.fixed-contact-wrapper {
  position: fixed;
  top: 45%;
  right: 0;
  bottom: auto;
  z-index: 9999;
  transform: translateY(-50%);
  pointer-events: none;
}

.fixed-contact {
  transform: rotate(-90deg);
  transform-origin: right center;
  position: relative;
  right: 25px;
  margin-right: 0;
  pointer-events: auto;
}

.fixed-contact .header-contact {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  border-radius: 10px 10px 0 0;
  padding: 10px 20px;
  box-shadow: 0 -2px 6px rgba(0, 0, 0, 0.1);
  white-space: nowrap;
}

.fixed-contact .header-contact p {
  margin: 0;
}

.fixed-contact-content {
  position: fixed;
  top: 50%;
  right: 0;
  bottom: auto;
  min-width: 340px;
  width: 400px;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  padding: 2rem 3rem;
  z-index: 10000;
  transform: translateY(-50%);
  pointer-events: auto;
}

.close-content-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 5px 10px;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fixed-contact-inner-content {
  margin-top: 20px;
}

@media (max-width: 768px) {
  .fixed-contact-content {
    right: 0;
    width: 250px;
  }
}