#hfm-wrap {
  position: fixed;
  bottom: 28px;
  right: 24px;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  font-family: 'Cormorant Garamond', Georgia, serif;
}

#hfm-items {
  display: flex;
  flex-direction: column;
  gap: 11px;
  align-items: flex-end;
  pointer-events: none;
  opacity: 0;
  transform: translateY(14px) scale(0.97);
  transition: opacity 0.28s cubic-bezier(.4,0,.2,1), transform 0.28s cubic-bezier(.4,0,.2,1);
}
#hfm-items.open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
  margin-right: 5px;
}

.hfm-row {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  text-decoration: none;
}

.hfm-label {
  background: #ffffff;
  color: #1a1a1a;
  font-size: 11px;
  letter-spacing: 0.04em;
  padding: 6px 14px;
  border-radius: 40px;
  border: 1px solid rgba(0,0,0,0.12);
  white-space: nowrap;
  font-weight: 600;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  transition: background 0.15s, border-color 0.15s, transform 0.15s;
}
.hfm-row:hover .hfm-label {
  background: #f7f3ee;
  border-color: rgba(0,0,0,0.22);
  transform: translateX(-2px);
}

.hfm-dot {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 3px 14px rgba(0,0,0,0.18);
  transition: transform 0.15s;
  overflow: hidden;
}

.hfm-dot svg{
  width: 22px;
  height: 22px;
  display: block;
  fill: white;
}

.hfm-dot img {
  width: 30px!important;
  height: 30px!important;
  display: block;
  object-fit: contain; /
}

.hfm-row:hover .hfm-dot { transform: scale(1.08); }

.hfm-dot-wa   { background: #5A320F; }
.hfm-dot-call { background: #5A320F; }
.hfm-dot-food { background: #5A320F; }
.hfm-dot-book { background: #5A320F; }

#hfm-tooltip {
  position: absolute;
  bottom: 64px;
  right: 0;
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 14px;
  padding: 11px 12px 11px 16px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.13);
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: auto;
}
#hfm-tooltip.hidden {
  opacity: 0;
  transform: translateY(6px);
  pointer-events: none;
}
#hfm-tooltip-inner {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
#hfm-tooltip p { margin: 0; line-height: 1.45; }
#hfm-tooltip-title {
  font-size: 16px;
  font-weight: 700;
  color: #1a1a1a;
  font-family: 'Cormorant Garamond', Georgia, serif;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
#hfm-tooltip-sub {
  font-size: 12px;
  color: #999;
  font-family: 'Cormorant Garamond', Georgia, serif;
  margin-top: 3px !important;
  white-space: nowrap;
}
#hfm-tooltip-close {
  position: absolute;
  top: 2px;
  right: 2px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #bbb;
}
#hfm-tooltip-close:hover { color: #555; }
#hfm-tooltip::after {
  content: '';
  position: absolute;
  bottom: -6px;
  right: 20px;
  width: 10px;
  height: 10px;
  background: #ffffff;
  border-right: 1px solid rgba(0,0,0,0.1);
  border-bottom: 1px solid rgba(0,0,0,0.1);
  transform: rotate(45deg);
}

#hfm-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #000;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.28);
  transition: background 0.2s, transform 0.2s;
  flex-shrink: 0;
  position: relative;
}
#hfm-btn:hover  { background: #333; transform: scale(1.05); }
#hfm-btn:active { transform: scale(0.97); }
#hfm-btn svg {
  position: absolute;
  transition: opacity 0.2s, transform 0.2s;
}
#hfm-btn svg.hide { opacity: 0; transform: rotate(45deg); }
#hfm-btn svg.show { opacity: 1; transform: rotate(0deg); }
