/**
 * Vendor CSS - Third-party library styles
 *
 * This file contains minimal CSS for vendor libraries.
 * For full functionality, either:
 * 1. Download the full CSS files from the respective libraries
 * 2. Use CDN links in your HTML
 *
 * CDN alternatives:
 * - Swiper: https://cdn.jsdelivr.net/npm/swiper@11/swiper-bundle.min.css
 * - GLightbox: https://cdn.jsdelivr.net/npm/glightbox/dist/css/glightbox.min.css
 */

/* ==========================================================================
   Swiper Core Styles
   ========================================================================== */

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
  display: block;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  box-sizing: content-box;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}

.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  backface-visibility: hidden;
}

/* Navigation Buttons */
.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  width: calc(44px / 2);
  height: 44px;
  margin-top: calc(-44px / 2);
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color, #007aff));
}

.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-prev.swiper-button-hidden,
.swiper-button-next.swiper-button-hidden {
  opacity: 0;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: 10px;
  right: auto;
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: 10px;
  left: auto;
}

/* Pagination */
.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 300ms opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

.swiper-pagination-disabled > .swiper-pagination,
.swiper-pagination.swiper-pagination-disabled {
  display: none !important;
}

.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: 10px;
  left: 0;
  width: 100%;
}

.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 50%;
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
  margin: 0 4px;
  cursor: pointer;
}

.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-color, var(--swiper-theme-color, #007aff));
}

/* Fade Effect */
.swiper-fade.swiper-free-mode .swiper-slide {
  transition-timing-function: ease-out;
}

.swiper-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity;
}

.swiper-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-fade .swiper-slide-active {
  pointer-events: auto;
}

.swiper-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

/* ==========================================================================
   GLightbox Core Styles
   ========================================================================== */

.glightbox-container {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999 !important;
  overflow: hidden;
  touch-action: none;
  text-size-adjust: 100%;
  backface-visibility: hidden;
  outline: none;
}

.glightbox-container.inactive {
  display: none;
}

.glightbox-container .gcontainer {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 9999;
  overflow: hidden;
}

.glightbox-container .gslider {
  transition: transform 0.4s ease;
  height: 100%;
  left: 0;
  top: 0;
  width: 100%;
  position: relative;
  overflow: hidden;
  display: flex !important;
  justify-content: center;
  align-items: center;
  transform: translate3d(0, 0, 0);
}

.glightbox-container .gslide {
  width: 100%;
  position: absolute;
  user-select: none;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
}

.glightbox-container .gslide.current {
  opacity: 1;
  z-index: 99999;
  position: relative;
}

.glightbox-container .gslide.prev {
  opacity: 1;
  z-index: 9999;
}

.glightbox-container .gslide-inner-content {
  width: 100%;
}

.glightbox-container .ginner-container {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  max-width: 100%;
  margin: auto;
  height: 100vh;
}

.glightbox-container .ginner-container.gvideo-container {
  width: 100%;
}

.glightbox-container .ginner-container.desc-bottom,
.glightbox-container .ginner-container.desc-top {
  flex-direction: column;
}

.glightbox-container .ginner-container.desc-left,
.glightbox-container .ginner-container.desc-right {
  max-width: 100% !important;
}

.gslide img {
  max-height: 100vh;
  max-width: 100%;
  display: block;
  padding: 0;
  float: none;
  outline: none;
  border: none;
  user-select: none;
  height: auto;
  cursor: default;
}

.gslide-image {
  align-items: center;
}

.gslide-image img {
  max-height: 100vh;
  max-width: 100%;
  user-select: none;
  cursor: grab;
}

.gslide-video,
.gslide-inline {
  display: flex;
  max-width: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #000;
}

.gslide-video .gvideo-wrapper,
.gslide-video .plyr__video-wrapper {
  width: 100%;
  max-width: 100%;
}

.gslide-video iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}

.goverlay {
  width: 100%;
  height: calc(100vh + 1px);
  position: fixed;
  top: -1px;
  left: 0;
  background: #000;
  will-change: opacity;
}

.glightbox-mobile .goverlay {
  background: #000;
}

/* Close Button */
.gclose,
.gnext,
.gprev {
  z-index: 99999;
  cursor: pointer;
  width: 26px;
  height: 44px;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  opacity: 0.7;
  background: transparent;
}

.gclose:focus,
.gnext:focus,
.gprev:focus {
  outline: none;
}

.gclose:hover,
.gnext:hover,
.gprev:hover {
  opacity: 1;
}

.gclose svg,
.gnext svg,
.gprev svg {
  display: block;
  width: 25px;
  height: auto;
  margin: 0;
  padding: 0;
  fill: #fff;
}

.gclose {
  width: 35px;
  height: 35px;
  position: absolute;
  top: 15px;
  right: 15px;
}

.gnext,
.gprev {
  position: absolute;
  top: calc(50% - 22px);
  width: 40px;
  height: 50px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 4px;
}

.gnext {
  right: 15px;
}

.gprev {
  left: 15px;
}

/* Description/Caption */
.gdesc-inner {
  padding: 22px 20px;
}

.gslide-title {
  font-size: 1em;
  font-weight: normal;
  font-family: inherit;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.4em;
}

.gslide-desc {
  font-size: 0.86em;
  margin-bottom: 0;
  font-family: inherit;
  line-height: 1.4em;
  color: rgba(255, 255, 255, 0.7);
}

/* Counter */
.gcounter {
  position: absolute;
  top: 15px;
  left: 20px;
  font-size: 1em;
  color: #fff;
  z-index: 99999;
}

/* Loader */
.gloader {
  height: 25px;
  width: 25px;
  animation: lightboxLoader 0.8s infinite linear;
  border: 2px solid #fff;
  border-right-color: transparent;
  border-radius: 50%;
  position: absolute;
  display: block;
  z-index: 9999;
  left: calc(50% - 12.5px);
  top: calc(50% - 12.5px);
}

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

/* Clean Skin */
.glightbox-clean .gslide-description {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.75) 100%);
  position: absolute;
  bottom: 0;
  padding: 30px 25px 25px 25px;
  width: 100%;
  max-width: 100%;
  left: 0;
  color: #fff;
}

.glightbox-clean .gslide-title {
  color: #fff;
  margin: 0;
  padding: 0;
}

.glightbox-clean .gslide-desc {
  color: rgba(255, 255, 255, 0.8);
}

/* Mobile Styles */
@media (max-width: 768px) {
  .ginner-container {
    padding: 10px;
  }

  .gclose {
    top: 10px;
    right: 10px;
  }

  .gnext,
  .gprev {
    display: none;
  }

  .gcounter {
    top: 10px;
    left: 10px;
    font-size: 0.9em;
  }
}
