/* Lightbox */
.lightbox-vue{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.95);
  z-index:9999;
  display:flex;
  flex-direction:column;
  animation:fadeIn .3s ease;
}
@keyframes fadeIn{
  from{opacity:0}
  to{opacity:1}
}
.lightbox-header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:20px 25px;
  background:linear-gradient(to bottom, rgba(0,0,0,0.7), transparent);
  position:absolute;
  top:0;
  left:0;
  right:0;
  z-index:10;
}
.lightbox-title{
  font-family:'Oswald',sans-serif;
  font-size:22px;
  color:#fff;
  text-transform:uppercase;
  letter-spacing:2px;
  text-shadow:0 2px 4px rgba(0,0,0,0.5);
}
.lightbox-close{
  width:50px;
  height:50px;
  background:rgba(177,18,26,0.9);
  border:none;
  border-radius:50%;
  color:#fff;
  font-size:28px;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  transition:all .3s ease;
  box-shadow:0 4px 15px rgba(0,0,0,0.3);
}
.lightbox-close:hover{
  background:#b1121a;
  transform:scale(1.1) rotate(90deg);
  box-shadow:0 6px 20px rgba(177,18,26,0.4);
}
.lightbox-main{
  flex:1;
  display:flex;
  align-items:center;
  justify-content:center;
  position:relative;
  padding:80px 20px 20px;
  min-height:0;
}
.lightbox-main > img{
  max-width:90%;
  max-height:100%;
  object-fit:contain;
  border-radius:8px;
  box-shadow:0 10px 50px rgba(0,0,0,0.5);
  animation:zoomIn .3s ease;
}
@keyframes zoomIn{
  from{transform:scale(0.9);opacity:0}
  to{transform:scale(1);opacity:1}
}
.lightbox-controls{
  display:flex;
  justify-content:center;
  gap:30px;
  padding:15px 0;
}
.lightbox-nav{
  width:60px;
  height:60px;
  background:rgba(255,255,255,0.1);
  backdrop-filter:blur(10px);
  border:2px solid rgba(255,255,255,0.2);
  border-radius:50%;
  color:#fff;
  font-size:24px;
  cursor:pointer;
  transition:all .3s ease;
  display:flex;
  align-items:center;
  justify-content:center;
}
.lightbox-nav:hover{
  background:rgba(177,18,26,0.9);
  border-color:#b1121a;
  transform:scale(1.1);
  box-shadow:0 5px 20px rgba(177,18,26,0.4);
}
.lightbox-download{
  width:60px;
  height:60px;
  background:rgba(255,255,255,0.1);
  backdrop-filter:blur(10px);
  border:2px solid rgba(255,255,255,0.2);
  border-radius:50%;
  color:#fff;
  font-size:22px;
  cursor:pointer;
  transition:all .3s ease;
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
}
.lightbox-download:hover{
  background:rgba(34,139,34,0.9);
  border-color:#228b22;
  transform:scale(1.1);
  box-shadow:0 5px 20px rgba(34,139,34,0.4);
  color:#fff;
}
.lightbox-thumbnails{
  display:flex;
  gap:10px;
  padding:20px;
  overflow-x:auto;
  background:linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0.4));
  justify-content:center;
  scrollbar-width:thin;
  scrollbar-color:#b1121a transparent;
}
.lightbox-thumbnails::-webkit-scrollbar{
  height:6px;
}
.lightbox-thumbnails::-webkit-scrollbar-track{
  background:transparent;
}
.lightbox-thumbnails::-webkit-scrollbar-thumb{
  background:#b1121a;
  border-radius:3px;
}
.lightbox-thumb{
  width:70px;
  height:70px;
  min-width:70px;
  object-fit:cover;
  cursor:pointer;
  border:3px solid transparent;
  border-radius:8px;
  opacity:0.5;
  transition:all .3s ease;
}
.lightbox-thumb:hover{
  opacity:0.8;
  transform:translateY(-3px);
}
.lightbox-thumb.active{
  border-color:#b1121a;
  opacity:1;
  box-shadow:0 4px 15px rgba(177,18,26,0.5);
  transform:translateY(-3px);
}
.lightbox-loading{
  color:#fff;
  font-family:'Oswald',sans-serif;
  font-size:20px;
  text-transform:uppercase;
  letter-spacing:2px;
}
