.indososh-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column-reverse;
  align-items: flex-end;
  gap: 10px;
  z-index: 9999;
}

.indososh-toggle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: #0073aa;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

.indososh-toggle:hover {
  background-color: #005f8d;
  transform: scale(1.05);
}

.indososh-buttons {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.4s ease;
  opacity: 0;
}

.indososh-buttons.active {
  max-height: 500px;
  opacity: 1;
}

.indososh-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.indososh-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

.indososh-btn svg {
  width: 20px;
  height: 20px;
  fill: #fff;
}

.indososh-btn.fb { background-color: #3b5998; }
.indososh-btn.ig { background-color: #E4405F; } /* ✅ Instagram color */
.indososh-btn.li { background-color: #0077b5; }
.indososh-btn.tw { background-color: #1da1f2; }

.indososh-btn.custom span {
  font-size: 12px;
  font-weight: bold;
  text-transform: capitalize;
}

@media (max-width: 600px) {
  .indososh-container {
    bottom: 15px;
    right: 15px;
    gap: 8px;
  }
  .indososh-toggle {
    width: 50px;
    height: 50px;
  }
  .indososh-btn {
    width: 44px;
    height: 44px;
  }
}