.gg-tour-video {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}

/* Responsive 16:9 iframe wrapper */
.gg-tour-video__wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 8px;
}

.gg-tour-video__wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Mini player — floating state */
.gg-tour-video-wrapper.gg-video-mini {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 320px;
  height: 180px;
  z-index: 9999;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
  padding-top: 0 !important; /* override the aspect-ratio padding hack */
  transition: box-shadow 0.2s ease;
}

/* The iframe needs to fill the fixed container */
.gg-tour-video-wrapper.gg-video-mini iframe {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
}

/* Close button */
.gg-video-mini-close {
  position: absolute;
  top: 6px;
  right: 8px;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s ease;
}

.gg-video-mini-close:hover {
  background: rgba(0, 0, 0, 0.85);
}

/* Mobile — smaller and higher up to clear nav */
@media (max-width: 767px) {
  .gg-tour-video-wrapper.gg-video-mini {
    width: 220px;
    height: 124px;
    bottom: 80px; /* clear mobile bottom nav if any */
    right: 12px;
  }
}