.gc-wrapper {
  display: flex;
  justify-content: center;
  width: 100%;
}

.golf-carousel {
  position: relative;
  width: 100%;
  max-width: 900px;
  overflow: visible;
}

.gc-slides {
  position: relative;
  height: 420px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.gc-slide {
  position: absolute;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.gc-slide.active {
  opacity: 1;
}

.gc-hole-img {
  width: 85%;
  display: block;
  margin: auto;
  filter: drop-shadow(0px 10px 25px rgba(0, 0, 0, 0.5));
}

/* Arrows */
.gc-arrow {
  position: absolute;
  top: 45%;
  background: none !important;
  border: none;
  color: #fff;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  z-index: 10;
}

.gc-prev {
  left: -60px;
}
.gc-next {
  right: -60px;
}

/* Info Bar */
.gc-info {
  margin: 10px auto 0;
  background: #faf7e8;
  padding: 10px 40px;
  border-radius: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 18px;
  position: relative;
}

/* Hole Circle */
.gc-info-center {
  background: white;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  gap: 5px;
  position: absolute;
  left: 52%;
  transform: translateX(-50%);
  top: -30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}
.gc-info-item {
    width: 40%;
    justify-content: center;
    align-items: center;
    display: flex;
    gap: 10px;
}

.gc-info-item span,
.gc-info-center span {
  font-size: 32px;
  font-weight: bold;
}

/* Numbers Nav */
.gc-nav {
  margin-top: 40px;
  text-align: center;
}

.gc-num {
  margin: 0 5px;
  color: #aaa;
  cursor: pointer;
  font-size: 16px;
}

.gc-num.active {
  color: #8e7552;
}

.gc-tabs {
  margin-top: 25px;
  font-size: 20px;
  letter-spacing: 2px;
  color: #8e7552;
  text-align: center;
}


/* ===========================
   CATEGORY TABS – DESKTOP
   =========================== */
.gc-tabs {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  margin-bottom: 25px;
  flex-wrap: nowrap;
}

.gc-tab {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 1px;
  cursor: pointer;
  color: #ffffff;
  transition: all 0.3s ease;
  user-select: none;
  position: relative;
  text-transform: uppercase;
}

/* Separator ( | ) */
.gc-tab:not(:last-child)::after {
  content: "|";
  position: absolute;
  right: -20px;
  top: 0;
  color: #ffffff;
  opacity: 0.6;
}

/* ACTIVE TAB COLOR */
.gc-tab.active {
  color: #8e7552;
}

/* On Hover */
.gc-tab:hover {
    background-color: unset !important;
  color: none;
}

/* ===========================
   MOBILE RESPONSIVE
   =========================== */
@media (max-width: 768px) {
  .gc-tabs {
    gap: 18px;
    flex-wrap: wrap;
    padding: 0 10px;
    margin-bottom: 20px;
  }

  .gc-tab {
    font-size: 16px;
    letter-spacing: 0.6px;
    margin-bottom: 5px;
  }

  /* Move separators correctly */
  .gc-tab:not(:last-child)::after {
    right: -12px;
    font-size: 16px;
  }
  .gc-info {
    padding: 5px 5px;
  }
  .gc-info-center {
    top: -20px;
    width: 99px;
    height: 99px;
    font-size: 12px;
    gap: 0 ;
  }
  .gc-info-item  {
    font-size: 12px;
    gap: 5px;
    display: grid;
  }
  .gc-info-item span {
    font-size: 20px;
  }
  .gc-info-center span{
    font-size: 36px;
  }
  .gc-arrow {
    display: none;
  }
  .gc-slides {
    height: 234px;
  }
  .gc-info-center {
    padding-top: 10px;
    left: 48%;
}
.gc-nav {
    display: grid;
    grid-template-columns: 16% 16% 16% 16% 16% 16%;
}
}

@media (max-width: 480px) {
  .gc-tabs {
    justify-content: center;
    gap: 14px;
  }

  .gc-tab {
    font-size: 14px;
    margin-bottom: 3px;
  }

  .gc-tab:not(:last-child)::after {
    right: -10px;
    font-size: 14px;
  }
}