/* Floating Buttons */
.floating-buttons {
  position: fixed;
  top: 649px;
  right: 30px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.floating-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 22px;
  border-radius: 80px;
  font-family: 'Yu Mincho', serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 36px;
  text-align: center;
  transition: all 0.3s ease;
  width: 200px;
  height: 50px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.floating-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.line-btn {
  background: #FFFFFF;
  color: #333333;
  border: 1px solid #333333;
}

.line-btn:hover {
  background: #f8f8f8;
}

.consultation-btn {
  background: linear-gradient(135deg, #B33D31, #8B2E24);
  color: #FFFFFF;
  border: 1px solid #FFFFFF;
}

.consultation-btn:hover {
  background: linear-gradient(135deg, #8B2E24, #B33D31);
}

.floating-btn .btn-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* Mobile Styles */
@media (max-width: 1024px) {
  .floating-buttons {
    right: 20px;
    top: auto;
    bottom: 20px;
  }
}

@media (max-width: 768px) {
  .floating-buttons {
    right: 16px;
    bottom: 16px;
    flex-direction: row;
    gap: 8px;
  }
  
  .floating-btn {
    width: 140px;
    height: 45px;
    padding: 12px 16px;
    font-size: 14px;
  }
  
  .floating-btn .btn-icon {
    width: 18px;
    height: 18px;
  }
}

@media (max-width: 480px) {
  .floating-buttons {
    right: 12px;
    bottom: 12px;
    flex-direction: column;
    gap: 6px;
  }
  
  .floating-btn {
    width: 120px;
    height: 40px;
    padding: 8px 12px;
    font-size: 12px;
  }
  
  .floating-btn .btn-icon {
    width: 16px;
    height: 16px;
  }
}
