
.footer-avatar {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  object-fit: cover;
  display: inline-block;
  margin-bottom: 4px;
}


@media (max-width: 768px) {
  .goo-footer-menu {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff7f2;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 10px 0;
    border-top: 1px solid #007BFF;
    z-index: 9999;
  }
  .goo-menu-item, .goo-booking-dropdown, .goo-account-dropdown {
    flex: 1;
    text-align: center;
    font-size: 12px;
    color: #333;
  }
  .goo-menu-item i, .goo-booking-dropdown i, .goo-account-dropdown i {
    font-size: 18px;
    color: #007BFF;
    display: block;
  }
  .goo-menu-item span, .goo-booking-dropdown span, .goo-account-dropdown span {
    font-size: 11px;
    display: block;
  }
  .goo-menu-center {
    position: relative;
    top: -20px;
    background: #007BFF;
    color: #fff;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    text-align: center;
    line-height: 52px;
    box-shadow: 0 8px 20px rgba(237, 94, 3, 0.35);
    font-size: 20px;
    border: 2px solid #fff;
    cursor: pointer;
  }
  .goo-submenu-plus,
  .goo-submenu-booking,
  .goo-submenu-account {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    padding: 8px 0;
    width: 220px;
    border-radius: 10px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
  }
  .goo-submenu-plus.show,
  .goo-submenu-booking.show,
  .goo-submenu-account.show {
    opacity: 1;
    visibility: visible;
  }
  .goo-submenu-plus a,
  .goo-submenu-booking a,
  .goo-submenu-account a {
    display: flex;
    align-items: center;
    padding: 10px 14px;
    font-size: 14px;
    color: #007BFF;
    text-decoration: none;
    border-bottom: 1px solid #eee;
    gap: 8px;
  }
  .goo-submenu-plus a:last-child,
  .goo-submenu-booking a:last-child,
  .goo-submenu-account a:last-child {
    border-bottom: none;
  }
}

@media (min-width: 769px) {
  .goo-footer-menu {
    display: none;
  }
}

.goo-submenu-plus a {
  padding: 8px 14px;
  font-size: 13px;
  line-height: 18px;
  min-height: 40px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid #eee;
  color: #007BFF;
  text-decoration: none;
  transition: background 0.2s ease;
}

.goo-submenu-plus a:hover {
  background-color: #fdf0e8;
}

.goo-submenu-account {
  position: absolute;
  bottom: 60px;
  left: 50%; /* perfectly center horizontally */
  transform: translateX(-50%);
  background: #fff;
  padding: 8px 0;
  width: 220px;
  border-radius: 10px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}



.goo-submenu-account.show {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.goo-submenu-account a {
  display: flex;
  align-items: center;
  padding: 10px 14px;
  font-size: 14px;
  color: #007BFF;
  text-decoration: none;
  border-bottom: 1px solid #eee;
  gap: 8px;
}

.goo-submenu-account a:last-child {
  border-bottom: none;
}

.goo-submenu-account a:hover {
  background-color: #fdf0e8;
}

.goo-submenu-account a i {
  font-size: 16px;
  min-width: 20px;
}

