.floating-contact-bar {
  position: fixed;
  bottom: 10px;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.25);
  box-shadow: none;
  z-index: 1000;
  padding: 8px;
  display: flex;
  gap: 2px;
  align-items: center;
  justify-content: center;
}

.floating-contact-bar__button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  font-family: "NotoSansJp-Bold", "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
  text-decoration: none;
  color: #ffffff;
  white-space: nowrap;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  flex-shrink: 0;
  height: 50px;
  min-width: 114px;
}

.floating-contact-bar__button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.floating-contact-bar__button:active {
  transform: translateY(0);
}

.floating-contact-bar__button--email {
  background-color: #009de8;
}

.floating-contact-bar__button--line {
  background-color: #06c755;
}

.floating-contact-bar__button--phone {
  background-color: #ff0000;
  border-radius: 45px;
  min-width: 140px;
  padding: 12px 24px 16px 24px;
  flex-direction: column;
  gap: 0;
  line-height: 0;
  justify-content: center;
}

.floating-contact-bar__phone-text {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: -4px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.floating-contact-bar__phone-hours {
  font-family: "NotoSansJp-Regular", "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: -4px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Hide on desktop */
@media (min-width: 1024px) {
  .floating-contact-bar {
    display: none;
  }
}

/* Mobile adjustments */
@media (max-width: 480px) {
  .floating-contact-bar {
    padding: 6px;
  }

  .floating-contact-bar__button {
    font-size: 14px;
    padding: 10px 16px;
    min-width: 100px;
    height: 46px;
  }

  .floating-contact-bar__button--phone {
    min-width: 120px;
    padding: 10px 20px 14px 20px;
  }

  .floating-contact-bar__phone-text {
    font-size: 14px;
    margin-bottom: -3px;
  }

  .floating-contact-bar__phone-hours {
    font-size: 11px;
    margin-bottom: -3px;
  }
}