/* Instagram floatbox (sits left of FB floatbox) */
.myk-ig-btn {
  position: fixed;
  right: 270px;             /* 👈 adjust to fit your stack */
  bottom: 20px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #fff 0, #fff 12%, #f77737 42%, #c13584 74%, #5851db 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 3px 3px 5px rgba(0,0,0,.25);
  cursor: pointer;
  transition: .25s;
  z-index: 999;
}
.myk-ig-btn svg {
  width: 22px;
  height: 22px;
  fill: #fff;
}
.myk-ig-btn:hover { opacity: .9; }

.myk-ig-panel {
  position: fixed;
  right: 200px;             /* same as button */
  bottom: 75px;
  width: 330px;
  max-height: 430px;
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 0 12px rgba(0,0,0,.12);
  overflow: hidden;
  height: 0;
  transition: height .25s ease-out;
  z-index: 9998;
  display: flex;
  flex-direction: column;
}
.myk-ig-panel.myk-ig-show {
  height: 430px;
}

.myk-ig-head {
  background: linear-gradient(135deg, #f77737 0%, #c13584 40%, #5851db 100%);
  color: #fff;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.myk-ig-title {
  font-weight: 600;
}
.myk-ig-close {
  margin-left: auto;
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
}

.myk-ig-body {
  flex: 1;
  overflow-y: auto;
  background: #fff;
  padding: 8px 6px 12px;
}
.myk-ig-inner {
  min-height: 320px;
}
.myk-ig-fallback {
  font-size: 12px;
  margin-top: 10px;
  text-align: center;
}
.myk-ig-fallback a {
  color: #c13584;
  text-decoration: none;
}

/* small screens: stack to the left */
@media (max-width: 480px) {
  .myk-ig-btn
   {
    right: 260px;
  }
}

@media (max-width: 480px) {
  .myk-ig-panel {
    right: 40px;
  }
}
