#shop-container {
  position: fixed;
  top: 20px;
  right: 20px;
  text-align: center;
  z-index: 1000;
}

#shop-label {
  font-size: 14px;
  color: #f2f5ff;
  margin-bottom: 6px;
  font-weight: bold;
}

#shop-btn {
  background: linear-gradient(135deg,#6a5af9,#42e695);
  color: white;
  border: none;
  border-radius: 12px;
  padding: 10px 22px;
  font-weight: bold;
  font-size: 16px;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

#shop-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}