/* Instagram Button Layer – add this CSS to your site or link this file */
.ig-fixed {
  position: fixed;
  left: 20px;
  top: 20px;
  z-index: 9999;
}

.ig-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, opacity 0.15s ease;
  text-decoration: none;
}

.ig-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.18);
}

.ig-link:active {
  transform: translateY(0);
  box-shadow: 0 4px 12px rgba(0,0,0,0.14);
}

.ig-link img {
  display: block;
  width: 44px;
  height: 44px;
}

@media (prefers-color-scheme: dark) {
  .ig-link {
    background: rgba(0, 0, 0, 0.55);
  }
}