/* Web app store-style badge (next to Google Play) */
.web-app-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-sizing: border-box;
  height: 40px;
  min-width: 135px;
  padding: 0 14px 0 12px;
  border-radius: 6px;
  border: 1px solid #a6a6a6;
  background: #000;
  color: #fff;
  text-decoration: none !important;
  line-height: 1.1;
}

.web-app-badge:hover {
  border-color: #f2d762;
  color: #fff;
}

.web-app-badge__icon {
  display: inline-flex;
  flex-shrink: 0;
}

.web-app-badge__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1px;
}

.web-app-badge__eyebrow {
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #d0d0d0;
}

.web-app-badge__title {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #fff;
  white-space: nowrap;
}

.app-buttons .web-app-badge,
.footer-app-buttons .web-app-badge {
  margin-right: 0;
}
