.a2hs-banner {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 16px;
  background: #123f76;
  color: #fff;
  border-radius: 14px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
  font-family: inherit;
  font-size: 15px;
  line-height: 1.4;
  transform: translateY(140%);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.a2hs-banner.a2hs-show {
  transform: translateY(0);
  opacity: 1;
}

.a2hs-text {
  flex: 1;
}

.a2hs-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.a2hs-btn {
  background: #fff;
  color: #123f76;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
}

.a2hs-btn:active {
  transform: scale(0.97);
}

.a2hs-close {
  background: transparent;
  color: #fff;
  border: none;
  font-size: 24px;
  line-height: 1;
  width: 30px;
  height: 30px;
  cursor: pointer;
  opacity: 0.7;
}

.a2hs-close:hover {
  opacity: 1;
}

/* iOS instructions overlay */
.a2hs-ios-help {
  position: fixed;
  inset: 0;
  z-index: 1000000;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5);
  padding: 16px;
}

.a2hs-ios-card {
  background: #fff;
  color: #111;
  border-radius: 16px;
  padding: 20px;
  max-width: 420px;
  width: 100%;
  text-align: center;
  font-size: 15px;
  line-height: 1.6;
}

.a2hs-ios-card p {
  margin: 0 0 14px;
}

.a2hs-ios-icon {
  display: inline-block;
  font-weight: 700;
  color: #007aff;
}
