#chimchak-popup {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 340px;
  background: #0F1923;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(255,255,255,0.05);
  z-index: 99999;
  overflow: hidden;
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  transform: translateY(120%);
  opacity: 0;
  transition: transform 0.4s ease-out, opacity 0.4s ease-out;
  pointer-events: none;
}

#chimchak-popup.visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

#chimchak-popup.hidden {
  display: none;
}

@media (max-width: 480px) {
  #chimchak-popup {
    width: 90%;
    right: 5%;
    bottom: 16px;
  }
}

#chimchak-popup .popup-image {
  width: 100%;
  height: 172px;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}

#chimchak-popup .popup-body {
  padding: 14px 16px 16px;
}

#chimchak-popup .popup-close {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255, 255, 255, 0.45);
  font-size: 13px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: color 0.2s, background 0.2s, border-color 0.2s;
  z-index: 1;
  backdrop-filter: blur(4px);
}

#chimchak-popup .popup-close:hover {
  color: #fff;
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.25);
}

#chimchak-popup .popup-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.3);
  color: #F59E0B;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 3px 8px;
  border-radius: 20px;
  margin-bottom: 8px;
  text-transform: uppercase;
}

#chimchak-popup .popup-title {
  color: #ffffff;
  font-size: 17px;
  font-weight: 800;
  margin: 0 0 4px;
  letter-spacing: -0.02em;
}

#chimchak-popup .popup-sub {
  color: rgba(255, 255, 255, 0.35);
  font-size: 12px;
  margin: 0 0 13px;
  line-height: 1.55;
  font-weight: 500;
}

#chimchak-popup .popup-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
  color: #111;
  border: none;
  border-radius: 10px;
  padding: 10px 0;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: filter 0.2s, box-shadow 0.2s;
  letter-spacing: 0.01em;
  box-sizing: border-box;
  box-shadow: 0 4px 16px rgba(245, 158, 11, 0.25);
}

#chimchak-popup .popup-cta:hover {
  filter: brightness(1.1);
  box-shadow: 0 6px 24px rgba(245, 158, 11, 0.4);
}
