/* bottom-controls.css */
@media (max-width: 1024px){
  #tgu-lightbox .tgu-prev, 
  #tgu-lightbox .tgu-next {
    display: none !important;
  }
}

#tgu-lightbox .tgu-controls {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 18px;
  display: flex; 
  gap: 14px;
  align-items: center;
  background: rgba(0,0,0,0.5);
  padding: 8px 12px;
  border-radius: 10px;
  z-index: 1000000;
}

#tgu-lightbox .tgu-controls button {
  appearance: none;
  border: 1px solid rgba(255,255,255,.35);
  background: rgba(255,255,255,.15);
  color: #fff;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 15px;
  line-height: 1;
}

#tgu-lightbox .tgu-controls button:active {
  transform: scale(0.98);
}

#tgu-lightbox .tgu-counter {
  color: #fff;
  font-size: 14px;
  margin-left: 6px;
  opacity: .9;
}
