.content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

/* Floating Tools */
.floating-tools {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.floating-btn {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: #0d6efd;
  color: #fff;
  border: none;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  cursor: pointer;
  transition: 0.3s ease;
}

.floating-btn:hover {
  background: #0b5ed7;
  transform: translateY(-4px);
}

.gt-circle {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  overflow: hidden;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  cursor: pointer;
}

@media (max-width: 576px) {
  .floating-btn,
  .gt-circle {
    width: 48px;
    height: 48px;
    font-size: 18px;
  }
}

#gt-wrapper {
  position: relative;
  width: 55px;
  height: 55px;
}

.gt-icon {
  font-size: 24px;
  color: #0d6efd;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  pointer-events: none;
}

/* Google Translate select transparan */
#google_translate_element {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#google_translate_element select.goog-te-combo {
  width: 100% !important;
  height: 100% !important;
  opacity: 0 !important;
  cursor: pointer;
  z-index: 20;
  position: absolute !important;
}

/* Hide Google Translate branding */
.goog-logo-link {
  display: none !important;
}

.goog-te-gadget span {
  display: none !important;
}

.goog-te-banner-frame.skiptranslate {
  display: none !important;
}
/* Hilangkan frame paling bawah */
.goog-te-gadget {
  font-size: 0 !important;
}

/* Scroll Top Button */
.scroll-top-btn {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: #0d6efd;
  color: #fff;
  border: none;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
  transform: translateY(20px);
}

.scroll-top-btn.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top-btn:hover {
  background: #0b5ed7;
  transform: translateY(-4px);
}

/* Responsiveness */
@media (max-width: 576px) {
  .scroll-top-btn {
    width: 48px;
    height: 48px;
    font-size: 18px;
  }
}
