/* BREWER_NAV_HOTSPOT_CSS_START */
@font-face {
  font-family: Poppins;
  src: url(assets/fonts/Poppins-Regular.ttf);
  font-weight: 400;
}

@font-face {
  font-family: Poppins;
  src: url(assets/fonts/Poppins-Medium.ttf);
  font-weight: 500;
}

@font-face {
  font-family: Poppins;
  src: url(assets/fonts/Poppins-Bold.ttf);
  font-weight: 700;
}

.brewer-nav-hotspot,
.brewer-nav-hotspot * {
  box-sizing: border-box;
  font-family: Poppins, Helvetica, Arial, sans-serif;
}

.brewer-nav-hotspot {
  overflow: visible;
  pointer-events: auto;
  z-index: 10000;
}

.brewer-nav-hotspot__button {
  position: absolute;
  left: 0;
  top: 0;
  width: 64px;
  height: 64px;
  transform: translate(-50%, -50%);
  cursor: pointer;
  pointer-events: auto;
}

.brewer-nav-hotspot__pulse,
.brewer-nav-hotspot__ring,
.brewer-nav-hotspot__orb,
.brewer-nav-hotspot__icon {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 999px;
}

.brewer-nav-hotspot__pulse {
  width: 18px;
  height: 18px;
  background: rgba(244, 197, 0, 0.58);
  animation: brewerNavPulse 1.8s ease-out infinite;
  pointer-events: none;
}

.brewer-nav-hotspot__ring {
  width: 50px;
  height: 50px;
  border: 4px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 0 18px rgba(244, 197, 0, 0.75), 0 0 3px rgba(0, 0, 0, 0.45);
  transition: width 220ms ease, height 220ms ease, border-color 220ms ease, border-width 220ms ease, box-shadow 220ms ease;
  pointer-events: none;
}

.brewer-nav-hotspot__orb {
  width: 16px;
  height: 16px;
  background: #f4c500;
  box-shadow: 0 0 14px rgba(244, 197, 0, 0.95);
  pointer-events: none;
}

.brewer-nav-hotspot__icon {
  width: 24px;
  height: 24px;
  background: #f4c500;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.25);
  opacity: 0;
  transition: opacity 180ms ease, transform 220ms ease;
  pointer-events: none;
}

.brewer-nav-hotspot__icon img {
  width: 16px;
  height: 16px;
  margin: 4px;
  display: block;
  pointer-events: none;
}

.brewer-nav-hotspot.is-hovered .brewer-nav-hotspot__ring,
.brewer-nav-hotspot.is-mobile-active .brewer-nav-hotspot__ring {
  width: 68px;
  height: 68px;
  border-width: 7px;
  border-color: #f4c500;
  box-shadow: 0 0 26px rgba(244, 197, 0, 0.95), 0 0 8px rgba(0, 0, 0, 0.45);
}

.brewer-nav-hotspot.is-hovered .brewer-nav-hotspot__icon {
  opacity: 1;
  transform: translate(44px, -50%) rotate(45deg);
}

.brewer-nav-hotspot__card {
  position: absolute;
  left: 42px;
  top: 50%;
  min-width: 214px;
  max-width: 300px;
  min-height: 74px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 13px 9px 40px;
  color: #ffffff;
  background: rgba(24, 24, 24, 0.92);
  border-radius: 28px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-50%) scale(0.94);
  transition: opacity 220ms ease, transform 220ms ease, visibility 220ms ease;
  pointer-events: none;
}

.brewer-nav-hotspot.is-hovered .brewer-nav-hotspot__card {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) scale(1);
}

.brewer-nav-hotspot__card img {
  flex: 0 0 auto;
  width: 78px;
  height: 52px;
  object-fit: cover;
  border-radius: 8px;
  background: #181818;
}

.brewer-nav-hotspot__title {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.15;
  white-space: normal;
}

.brewer-nav-hotspot__mobile-card {
  position: absolute;
  left: 50%;
  top: 78px;
  width: 290px;
  overflow: hidden;
  color: #181818;
  background: #f4c500;
  border-radius: 10px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.35);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 12px) scale(0.96);
  transition: opacity 220ms ease, transform 220ms ease, visibility 220ms ease;
  pointer-events: none;
}

.brewer-nav-hotspot.is-mobile-active .brewer-nav-hotspot__mobile-card {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0) scale(1);
  pointer-events: auto;
}

.brewer-nav-hotspot__mobile-image {
  width: 100%;
  height: 118px;
  display: block;
  object-fit: cover;
  background: #181818;
}

.brewer-nav-hotspot__mobile-body {
  display: flex;
  align-items: center;
  min-height: 64px;
  gap: 12px;
  padding: 14px 14px 14px 18px;
}

.brewer-nav-hotspot__mobile-title {
  flex: 1 1 auto;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.15;
}

.brewer-nav-hotspot__open,
.brewer-nav-hotspot__close {
  flex: 0 0 auto;
  border: 0;
  cursor: pointer;
  color: #f4c500;
  background: #181818;
  font-weight: 700;
  pointer-events: auto;
}

.brewer-nav-hotspot__open {
  min-width: 58px;
  height: 38px;
  border-radius: 22px;
  font-size: 13px;
}

.brewer-nav-hotspot__close {
  position: absolute;
  right: 8px;
  top: 8px;
  width: 28px;
  height: 28px;
  border-radius: 20px;
  font-size: 16px;
  line-height: 28px;
}

@keyframes brewerNavPulse {
  0% {
    opacity: 0.95;
    transform: translate(-50%, -50%) scale(1);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(5.2);
  }
}

@media (max-width: 640px) {
  .brewer-nav-hotspot__card {
    display: none;
  }

  .brewer-nav-hotspot__mobile-card {
    width: min(290px, calc(100vw - 36px));
  }
}
/* BREWER_NAV_HOTSPOT_CSS_END */
