/** Shopify CDN: Minification failed

Line 874:16 Expected identifier but found whitespace
Line 928:0 Unexpected "}"
Line 990:3 Expected identifier but found whitespace

**/

@media (max-width: 900px){
  
   .gallery-search{ padding: 0.5rem;}
  
  
}


.gallery-search.loaded {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.gallery-search input[type="text"] {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-size: 1.15rem;
  padding: 14px ;
  border-radius: 40px 0 0 40px;
  color: #333;
  font-family: 'Poppins', 'Arial', sans-serif;
  min-width: 0;
}

.gallery-search button[type="submit"] {
  padding: 0 32px;
  border-radius: 999px !important;
  border: none;
  background: #ea3941;
  color: #fff;
  font-weight: 600;
  font-size: 1.1rem;
  height: 48px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: none;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  cursor: pointer;
  box-shadow: 0 2px 8px 0 rgba(0,0,0,0.08);
  white-space: nowrap;
}

.gallery-search button[type="submit"]:hover {
  background: #c00913;
  color: #fff;
  box-shadow: 0 4px 16px 0 rgba(234,57,65,0.18);
}
.gallery-hero.loaded {
  opacity: 1;
  visibility: visible;
}

.gallery-filters {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.gallery-filters.loaded {
  opacity: 1;
  visibility: visible;
}

.gallery-search {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  max-width: 700px;
  margin: 0 auto 1.5rem auto;
  background: #fff;
  border-radius: 40px;
  box-shadow: 0 6px 32px 0 rgba(0,0,0,0.07);
  padding: 0.5rem;
  position: relative;
}
@media (max-width: 900px) {
  .gallery-search {
  
  max-width: 350px !important;
  }
}

.gallery-search.loaded {
  opacity: 1;
  visibility: visible;
}



/* ==========================================================================
   LIGHTBOX BUTTONS - ORTAK STİLLER
   ========================================================================== */

/* Lightbox Temel Yapısı */




.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.9);
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.3s ease;
  will-change: transform, opacity;
}

.lightbox.active {
  display: flex !important;
  opacity: 1;
}

.lightbox-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(5px);
  cursor: pointer;
}

.lightbox-content {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  gap: 40px;
  width: 1250px;
  max-width: 96vw;
  max-height: 90vh;
  margin: 0 auto;
  overflow: hidden;
  background: rgba(34, 34, 34, 0.95);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  padding: 24px;
  transform: scale(0.98);
  transition: transform 0.3s ease;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
  z-index: 1001;
}

/* Lightbox Image Container */
.lightbox-image-container,
.lightbox-img-col,
.lightbox-media-col {
  flex: none;
  height: 780px;
  min-width: 500px;
  max-width: 850px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  border-radius: 10px;
  box-shadow: none;
  overflow: hidden;
  margin-right: 20px;
  background: transparent;
  cursor: default;
}

.lightbox-image,
.lightbox-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  border-radius: 8px;
}

/* Lightbox Info Alanı */
.lightbox-info {
  flex: 0 0 450px;
  min-width: 380px;
  max-width: 500px;
  height: 900px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  background: none;
  border-radius: 0 12px 12px 0;
  border-left: 2px solid rgba(255, 255, 255, 0.15);
  box-shadow: none;
  padding: 0 35px 0 35px;
  gap: 0;
  position: relative;
  cursor: default;
  color: #fff;
  text-align: left;
  z-index: 10;
  box-sizing: border-box;
  overflow-y: auto;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE ve Edge */
}

.lightbox-info::-webkit-scrollbar {
  display: none; /* Chrome, Safari ve Opera */
}


.lightbox-meta {
  font-size: 14px;
  color: #ccc;
  text-align: left;
  margin: 0 0 10px 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.lightbox-category,
.lightbox-uploader {
  display: block;
  margin-bottom: 2px;
}

.lightbox-description {
  font-size: 15px;
  color: #fff;
  text-align: left;
  margin: 0 0 20px 0;
  line-height: 1.5;
}

/* Lightbox Action Buttons */
.lightbox-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  margin: 16px 0;
}

.lightbox-action-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: #3a3a3a;
  color: #ffffff;
  border: none;
  border-radius: 6px;
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  width: 100%;
  text-decoration: none;
  height: 44px;
  justify-content: flex-start;
}

.lightbox-action-btn span {
  flex: 1;
  text-align: left;
  color: #ffffff;
  font-size: inherit;
}

.lightbox-action-btn svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  stroke: currentColor;
  stroke-width: 1.5;
  fill: none;
}

.lightbox-action-btn:hover {
  background-color: #4a4a4a;
  color: #ffffff;
}

/* Favorite Button Özel Stilleri */
.lightbox-action-btn.favorite-btn.favorited {
  background-color: #e53935;
  color: #ffffff;
}

.lightbox-action-btn.favorite-btn.favorited span {
  color: #ffffff;
}

.lightbox-action-btn.favorite-btn.favorited:hover {
  background-color: #d32f2f;
  color: #ffffff;
}

/* Gallery Card Action Buttons */
.item-action-btn {
  width: 44px;
  height: 44px;
  background: #ffffff;
  color: #333;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255, 255, 255, 0.3);
  font-size: 1.25rem;
  font-weight: bold;
  box-shadow: 0 4px 12px 0 rgba(0,0,0,0.15);
  transition: all 0.3s ease;
  cursor: pointer;
  backdrop-filter: blur(10px);
}

.item-action-btn svg {
  width: 20px !important;
  height: 20px !important;
  fill: currentColor !important;
  stroke: none !important;
}

.item-action-btn:hover {
  background: #ea3941;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.6);
  transform: translateY(-4px) scale(1.1);
  box-shadow: 0 6px 20px 0 rgba(0, 0, 0, 0.25);
}

.item-action-btn.favorite-btn.favorited,
.item-action-btn.favorite-btn.favorited:hover {
  background: #ea3941;
  color: #ffffff;
  border: 2px solid rgba(234, 57, 65, 0.8);
}

/* Share Buttons */
.lightbox-share-title {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  margin-top: 20px;
  margin-bottom: 12px;
  text-align: left;
}

.lightbox-share-buttons {
  display: flex;
  gap: 12px;
  margin-top: 0;
  justify-content: flex-start;
  flex-wrap: wrap;
  padding: 4px;
  box-sizing: border-box;

  padding-top: 18px;
  width: 100%;
  overflow: visible;
}

.lightbox-share-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #3a3a3a;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  text-decoration: none;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
}

.lightbox-share-btn svg {
  width: 16px !important;
  height: 16px !important;
  fill: currentColor !important;
  stroke: none !important;
}

.lightbox-share-btn:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
  color: #ffffff;
}

/* Social Media Specific Hover Colors */
.facebook-share:hover {
  background: #1877f2 !important;
  color: #fff !important;
}

.twitter-share:hover {
  background: #000 !important;
  color: #fff !important;
}

.instagram-share:hover {
  background: #e4405f !important;
  color: #fff !important;
}

.linkedin-share:hover {
  background: #0a66c2 !important;
  color: #fff !important;
}

.pinterest-share:hover {
  background: #bd081c !important;
  color: #fff !important;
}

.whatsapp-share:hover {
  background: #25d366 !important;
  color: #fff !important;
}

/* Lightbox Navigation Arrows */
.lightbox-arrow {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: #ea3941;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10001;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.2s;
  box-shadow: 0 2px 8px 0 rgba(0,0,0,0.12);
}

.lightbox-arrow svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.lightbox-arrow:hover {
  background: #ffffff;
  color: #ea3941;
  transform: translateY(-50%) scale(1.08);
}

.lightbox-prev {
  left: 32px;
  transform: translateY(-50%) ;
}

.lightbox-next {
  right: 20px;
}

/* Lightbox Close Button */
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 2rem;
  cursor: pointer;
  z-index: 10000;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  border-radius: 50%;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: scale(1.1);
}

.lightbox-close svg {
  width: 24px !important;
  height: 24px !important;
  fill: currentColor !important;
  stroke: none !important;
}

/* ==========================================================================
   RESPONSIVE DESIGN
   ========================================================================== */

/* Masaüstünde share-close-btn gizli olsun */
@media (min-width: 769px) {
  .share-close-btn {
    display: none !important;
  }
}

/* Tablet Responsive */
@media (max-width: 900px) {
  .lightbox-content {
    width: 85vw;
    max-width: 85vw;
    flex-direction: column;
    height: 90vh;
    max-height: 90vh;
    overflow-y: auto;
    background: rgba(34, 34, 34, 0.95);
    border-radius: 12px;
    padding: 15px;
    margin: 2rem;
  }

  .lightbox-image-container,
  .lightbox-img-col,
  .lightbox-media-col {
    flex: 1 1 auto;
    height: 43vh;
    min-width: unset;
    max-width: 100%;
    width: 100%;
    margin-bottom: 15px;
    margin-right: 0;
  }

  .lightbox-info {
    flex: 0 0 auto;
    min-width: unset;
    max-width: 100%;
    height: auto;

    border-left: none;
    border-top: 2px solid rgba(255, 255, 255, 0.15);
    padding: 15px 0 0 0;
    max-height: 65vh;
  }
}

@media (max-width: 768px) {
  
  .gallery-filter {

    font-weight: 500;
    font-size: 14px !important;

  }
    .gallery-hero {
      padding: 80px 16px 24px 16px;
    }
    .gallery-search {
      flex-direction: row !important;
      align-items: center;
      gap: 0;
      padding: 6px 8px 6px 12px;
      border-radius: 24px;
      max-width: 100%;
      margin: 0 auto 1.2rem auto;
      box-shadow: 0 2px 12px 0 rgba(0,0,0,0.07);
    }
    .gallery-search input[type="text"] {
      font-size: 1rem;
      padding: 12px 8px;
      border-radius: 40px 0 0 40px;
      margin-bottom: 0;
      min-width: 0;
    }
    .gallery-search button[type="submit"] {
      width: auto;
      border-radius: 999px !important;
      font-size: 1rem;
      height: 44px;
      justify-content: center;
      padding: 0 24px;
    }
    .gallery-filters {
      display: flex !important;
      overflow-x: auto;
      white-space: nowrap !important;
      flex-wrap: nowrap !important;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none; /* Firefox */
      -ms-overflow-style: none;  /* IE and Edge */
      padding: 10px 0;
      margin: 12px 0;
      justify-content: flex-start;
      width: 100%;
      gap: 12px;
    }

    .gallery-filters.center-filters {
        justify-content: center !important;
    }

    .gallery-filters::-webkit-scrollbar {
      display: none; /* Chrome, Safari, and Opera */
    }

    .gallery-filter {
      display: inline-block !important;
      flex-shrink: 0;
      white-space: nowrap;
      border-radius: 999px !important;
      padding: 10px 20px !important;
      height: auto !important;
      line-height: 1 !important;
    }
    
    /* Mobil için galeri düzeni - Yan yana 2'şer görsel */
    .gallery-list {
      display: grid !important;
      grid-template-columns: 1fr 1fr !important;
      gap: 12px !important;
      padding: 0 12px !important;
      margin: 20px 0 !important;
    }
    
    .gallery-card {
      width: 100% !important;
      margin: 0 !important;
    }
    
    .gallery-item .item-actions,
    .gallery-card .item-actions {
      opacity: 1 !important;
      transform: translateY(0) !important;
      pointer-events: auto !important;
      bottom: 10px !important;
      padding: 0 10px !important;
    }
    .item-action-btn {
      background: rgba(0, 0, 0, 0.6) !important;
      color: #fff !important;
      width: 36px !important;
      height: 36px !important;
      font-size: 1rem !important;
      font-weight: bold !important;
      border: 2px solid rgba(255, 255, 255, 0.4) !important;
      box-shadow: 0 2px 8px 0 rgba(0,0,0,0.3) !important;
      backdrop-filter: blur(5px) !important;
    }
    
    .item-action-btn svg {
      width: 18px !important;
      height: 18px !important;
      fill: white !important;
    }
    
    .item-action-btn:hover {
      background: rgba(255, 255, 255, 0.2) !important;
      border: 2px solid rgba(255, 255, 255, 0.7) !important;
      transform: scale(1.05) !important;
      box-shadow: 0 4px 12px 0 rgba(0,0,0,0.4) !important;
    }
    
    .item-action-btn.favorite-btn.favorited,
    .item-action-btn.favorite-btn.favorited:hover {
      background: transparent !important;
      color: #ea3941 !important;
    }
    
    .gallery-card .item-actions {
      bottom: 8px !important;
      gap: 16px !important;
    }
  }
  .lightbox-content {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 20px;
    max-height: 95vh;
  }

  .lightbox-info {
    max-width: 100%;
    min-width: 0;
    max-height: 50vh;
  }

  .lightbox-action-btn {
    height: 40px;
    padding: 8px 12px;
    font-size: 13px;
  }

  .lightbox-action-btn span {
    font-size: 13px;
  }

  .lightbox-action-btn svg {
    width: 18px;
    height: 18px;
  }
  .lightbox-arrow .arrow-char {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 2.2rem;
    font-weight: bold;
    color: #ea3941;
    line-height: 1;
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
    vertical-align: middle !important;
  }

  .lightbox-arrow {
    background: transparent !important;
    color: #ea3941 !important;
    box-shadow: none !important;
    border: none !important;
    font-size: 2.2rem !important;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    min-height: 44px;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
    position: fixed !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    z-index: 10001 !important;
  }
     
  .lightbox-next {
    right: 8px !important;
    left: auto !important;
  }


  .lightbox-prev {
    left: 8px !important;
    right: auto !important;
  }


  .lightbox-close {
    top: 15px;
    right: 15px;
    width: 32px;
    height: 32px;
    font-size: 24px;
  }

  .lightbox-share-title {
    font-size: 14px;
    margin-top: 14px;
    margin-bottom: 8px;
  }

  .lightbox-share-buttons {
    padding: 18px 0 0 0; /* çizgi ile ikonlar arasına daha fazla boşluk */
    gap: 10px;
  }

  .lightbox-share-btn {
    width: 32px;
    height: 32px;
  }

  .lightbox-share-btn svg {
    width: 14px !important;
    height: 14px !important;
  }

  /* Mobil için yeni paylaşım sistemi */
  .lightbox-share {
    position: relative;
    margin-top: 20px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .share-label {
    display: block;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    text-align: left;
  }

  .share-toggle-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: #3a3a3a;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    height: 44px;
    justify-content: flex-start;
  }

  .share-toggle-btn svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
    transition: transform 0.3s ease;
  }

  .share-toggle-btn.expanded {
    background-color: #4a4a4a;
  }

  .share-toggle-btn.expanded svg {
    transform: rotate(180deg);
  }

  .share-icons {
    display: none;
    gap: 2px;
    margin-top: 12px;
    flex-wrap: nowrap;
    justify-content: flex-start;
  }

  .share-icons.expanded {
    display: flex;
  }

  .share-icons .lightbox-share-btn {
    width: 38px;
    height: 38px;
    background-color: #3a3a3a;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    text-decoration: none;
    border: none;
    cursor: pointer;
    flex-shrink: 0;
  }

  .share-icons . svg {
    width: 16px;
    height: 16px;
    fill: currentColor !important;
  }

  .share-icons .lightbox-share-btn:hover {
    transform: translateY(-2px);
  }
  
  /* Mobilde share-close-btn arkaplan rengi olmasın */
  .share-close-btn {
    background: transparent !important;
    border: none;
    color: #ea3941;
    font-weight: bold;
  }

  /* Sosyal medya özel renkleri */
  .share-icons .facebook-share:hover {
    background: #1877f2 !important;
    color: #fff !important;
  }

  .share-icons .twitter-share:hover {
    background: #000 !important;
    color: #fff !important;
  }

  .share-icons .instagram-share:hover {
    background: #e4405f !important;
    color: #fff !important;
  }

  .share-icons .linkedin-share:hover {
    background: #0a66c2 !important;
    color: #fff !important;
  }

  .share-icons .pinterest-share:hover {
    background: #bd081c !important;
    color: #fff !important;
  }

  .share-icons .whatsapp-share:hover {
    background: #25d366 !important;
    color: #fff !important;
  }

  /* Eski bottom sheet sistemini gizle */
  .share-panel-overlay,
  .share-panel {
    display: none !important;
  }
}

/* Mobile Responsive */
@media (max-width: 480px) {
  .lightbox-content {
    width: 90vw;
    max-width: 90vw;
    height: 90vh;
    max-height: 90vh;
    background: rgba(34, 34, 34, 0.95);
    padding: 10px;
    margin: 0.1rem;
  }

  .lightbox-info {
    max-height: 70vh;
    padding-bottom: 60px;
    border-left: none;
    border-top: 2px solid rgba(255, 255, 255, 0.15);
  }

 

  .lightbox-meta {
    font-size: 12px;
  }

  .lightbox-description {
    font-size: 13px;
    margin-bottom: 12px;
  }

  .lightbox-actions {
    margin: 6px 0;
    gap: 6px;
  }

  .lightbox-action-btn {
    height: 36px;
    padding: 6px 10px;
    font-size: 12px;
  }

  .lightbox-action-btn span {
    font-size: 12px;
  }

  .lightbox-action-btn svg {
    width: 16px;
    height: 16px;
  }

  .lightbox-share-title {
    font-size: 13px;
    margin-top: 12px;
    margin-bottom: 6px;
  }

  .lightbox-share-buttons {
    gap: 8px;
  }

  . {
    width: 30px;
    height: 30px;
  }

  .lightbox-share-btn svg {
    width: 12px !important;
    height: 12px !important;
  }

  /* Mobile Gallery Card Actions */
  .item-action-btn {
    background: rgba(0, 0, 0, 0.6) !important;
    color: #fff !important;
    width: 36px !important;
    height: 36px !important;
    font-size: 1rem !important;
    border: 2px solid rgba(255, 255, 255, 0.4) !important;
    box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.3) !important;
    backdrop-filter: blur(5px) !important;
  }

  .item-action-btn svg {
    width: 18px !important;
    height: 18px !important;
    fill: white !important;
  }

  .item-action-btn:hover {
    background: rgba(255, 255, 255, 0.2) !important;
    border: 2px solid rgba(255, 255, 255, 0.7) !important;
    transform: scale(1.05) !important;
    box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.4) !important;
  }

  .item-action-btn.favorite-btn.favorited,
  .item-action-btn.favorite-btn.favorited:hover {
    background: transparent !important;
    color: #ea3941 !important;
  }

  /* Mobil paylaşım butonları için daha küçük boyut */
  .share-toggle-btn {
    height: 40px;
    padding: 10px 14px;
    font-size: 13px;
  }

  .share-toggle-btn svg {
    width: 16px;
    height: 16px;
  }

  .share-icons .lightbox-share-btn {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
  }

  .share-icons .lightbox-share-btn svg {
    width: 14px;
    height: 14px;
  }
}

/* ==========================================================================
   UTILITY CLASSES
   ========================================================================== */

/* Favorites Link Button */
.favorites-link-btn {
  display: block;
  margin: auto auto 2px auto;
  padding: 8px 18px;
  background: transparent;
  color: #fff;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.1s, color 0.1s;
  box-shadow: none;
  width: 100%;
  box-sizing: border-box;
  border: none;
  text-decoration: none;
}

.favorites-link-btn:hover {
  background: rgba(229, 57, 53, 0.08);
  color: #b71c1c;
}

/* Toast Notification Styles */
.toast {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  padding: 12px 24px;
  border-radius: 6px;
  font-size: 14px;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.toast.show {
  opacity: 1;
  visibility: visible;
}

/* Loading States */
.loading {
  opacity: 0.6;
  pointer-events: none;
}

.loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  border: 2px solid #fff;
  border-top: 2px solid transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* ==========================================================================
   ACCESSIBILITY
   ========================================================================== */

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .lightbox-action-btn,
  .item-action-btn,
  .lightbox-share-btn,
  .lightbox-arrow,
  .lightbox-close {
    transition: none;
  }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
  .lightbox-action-btn {
    border: 1px solid #fff;
  }
  
  .item-action-btn {
    border: 2px solid #000;
  }
  
  .lightbox-share-btn {
    border: 1px solid #fff;
  }
}