/* ========== GK Carousel Slider - Structure Only ========== */
.gkcs-slider-container {
  position: relative;
  width: min(100%, 100vw);
  padding: 0 16px;
  box-sizing: border-box;

  .gkcs-slider-wrapper {
    overflow: hidden;
    width: min(100%, 100vw);

    .gkcs-slider {
      display: flex;
      flex-wrap: nowrap;
      align-items: stretch;

      .gkcs-slide {
        flex-shrink: 0;
        flex-grow: 0;
        box-sizing: border-box;
        min-width: 0;

        .gkcs-slide-content {
          width: 100%;
          height: 100%;
          padding: 0 16px;
          box-sizing: border-box;
          .gkcs-slide-image {
            position: relative;
            width: 100%;
            aspect-ratio: 11 / 13;
            object-fit: cover;
            overflow: hidden;
            > img {
              width: 100%;
              height: auto;
              object-fit: cover;
            }
            .gkcs-slide-title {
              position: absolute;
              width: 100%;
              height: 100%;
              text-align: center;
              display: flex;
              justify-content: center;
              align-items: flex-end;
              z-index: 60;
              padding: 32px 16px;
            }
            .overlay {
              position: absolute;
              bottom: 0;
              left: 0;
              width: 100%;
              height: 100%;
              /* -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.0) 0%, rgba(0, 0, 0, 0.1) 60%,  rgba(0, 0, 0, 1) 70%, rgba(0, 0, 0, 1) 0%);
              mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.0) 0%, rgba(0, 0, 0, 0.1) 60%,  rgba(0, 0, 0, 1) 70%, rgba(0, 0, 0, 1) 0%);
              filter: grayscale(1); */
              background: linear-gradient(to bottom, rgba(0, 0, 0, 0.0) 0%, rgba(0, 0, 0, 0.1) 60%,   var(--nectar-accent-color) 100%);
              pointer-events: none;
              z-index: 50;
              > img {
                width: 100%;
                height: auto;
                object-fit: cover;
              }
            }
          }
          .gkcs-slide-socials {
            margin-top: 12px;
            display: flex;
            gap: 6px;
          }
        }
      }
    }
  }

  /* Navigation Arrows */
  .gkcs-arrow {
    position: absolute;
    top: 30%;
    height: 40%;
    transform: translateY(-15%);
    color: var(--nectar-extra-color-3);
    background: var(--nectar-extra-color-2);
    border: none;
    border-radius: 0;
    cursor: pointer;
    z-index: 10;
    padding: 0 10px;

    &.gkcs-arrow-prev {
      left: 16px;
      display: none;
    }

    &.gkcs-arrow-next {
      right: 28px;
    }
  }

  /* Pagination Dots */
  .gkcs-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 20px;

    .gkcs-pagination-dot {
      width: 12px;
      height: 12px;
      border-radius: 12px !important;
      border: none;
      background: var(--nectar-extra-color-2);
      opacity: 0.5;
      cursor: pointer;
      transition: opacity 0.3s;

      &:hover {
        opacity: 0.8;
      }

      &.active {
        opacity: 1;
      }
    }
  }
}
/* ===== Desktop ===== */
@media only screen and (min-width: 1000px) {
  .gkcs-slider-container {
    .gkcs-pagination {
      display: none;
    }
  }
}
/* ===== Mobile ===== */
@media only screen and (max-width: 999px) {
  .gkcs-slider-container {
    /* Navigation Arrows */
    .gkcs-arrow {
      display: none;
      &.gkcs-arrow-next {
        right: 18px;
      }
    }
  }
}