/* Root */
#gcb-root {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: -1;
}
#gcb-root .gcb-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  pointer-events: none;
  z-index: 2;
}
.gcb-columns-wrap {
  position: absolute;
  inset: 0;
  display: flex;
  gap: 8px;
  margin: -146px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.gcb-column-wrap {
  flex: 1 1 0;
  min-width: 120px;
  max-width: 260px;
  height: 160vh;
  overflow: hidden;
  position: relative;
}
.gcb-column-inner {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}
.gcb-card {
  width: 100%;
  height: 300px;
  border-radius: 12px;
  background-size: cover;
  background-position: center;
  margin: 16px 0;
  position: relative;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}
.gcb-card .gcb-top {
  position: absolute;
  top: 12px;
  left: 14px;
  font-size: 13px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
}
.gcb-card .gcb-heart {
  position: absolute;
  top: 10px;
  right: 14px;
  width: 30px;
  height: 30px;
  /* border-radius: 50%; */
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 27px;
  opacity: 1;
  font-weight: bold;
}
.gcb-card .gcb-bottom {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 0px;
  color: #fff;
  padding: 8px;
  border-radius: 8px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
  font-weight: 700;
}
.gcb-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff6ab9;
  display: inline-block;
  margin-left: 6px;
}

.gcb-dot-Offline {
  background: red !important;
}

.home-page i.jws-icon-heart {
  font-size: 20px;
  color: #fff;
  position: absolute;
  right: 6px;
  top: 6px;
}

.home-page .jws-icon-heart:before {
  content: "\e838";
}

.home-page [class^="jws-icon-"]:before,
.home-page [class*=" jws-icon-"]:before {
  font-family: "jws_icon";
  font-style: normal;
  font-weight: inherit;
}

.gcb-dot-Online {
  background: green !important;
}
/* Animations */
@keyframes gcb-scroll-up {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-50%);
  }
}
@keyframes gcb-scroll-down {
  0% {
    transform: translateY(-50%);
  }
  100% {
    transform: translateY(0);
  }
}

/* Responsive: hide on small devices */
@media (max-width: 900px) {
  .gcb-columns-wrap {
    position: absolute;
    inset: 0;
    display: flex;
    gap: 8px;
    margin: -146px;
    align-items: center;
    left: -113px;
    justify-content: center;
    overflow: hidden;
  }

  .gcb-column-wrap {
    flex: 1 1 0;
    min-width: 31vw;
    max-width: 216px;
    height: 133vh;
    overflow: hidden;
    position: relative;
  }

  .gcb-card {
    width: 100%;
    height: 170px;
    border-radius: 12px;
    background-size: cover;
    background-position: center;
    margin: 16px 0;
    position: relative;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  }
  .gcb-card .gcb-top {
    position: absolute;
    top: 3px;
    left: 5px;
    font-size: 13px;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .gcb-card .gcb-heart {
    position: absolute;
    top: 10px;
    right: 6px;
    width: 30px;
    height: 30px;
    /* border-radius: 50%; */
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    opacity: 1;
    font-weight: bold;
  }

  .gcb-card .gcb-bottom {
    font-size: 11px;
    position: absolute;
    left: -4px;
    right: 14px;
    bottom: 0px;
    color: #fff;
    padding: 8px;
    border-radius: 8px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 4px;
    font-weight: 700;
  }

  .gcb-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #ff6ab9;
    display: inline-block;
    margin-left: 0px;
  }
}
