/* Store badges — pixel-match tashwash-redesign (localhost:8081) */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap");

.tash-store-badges {
  font-family: "Poppins", system-ui, -apple-system, sans-serif;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.tash-store-badges .store-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  align-items: center;
  margin-top: 0;
}

.tash-store-badges a.store-badge,
.tash-store-badges a.store-badge:hover,
.tash-store-badges a.store-badge:focus,
.tash-store-badges a.store-badge:active,
.tash-store-badges a.store-badge:visited {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  width: 200px;
  height: 52px;
  padding: 0 15px;
  border-radius: 10px;
  background: #111 !important;
  color: #fff !important;
  text-decoration: none !important;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-sizing: border-box;
  flex-shrink: 0;
  font-family: "Poppins", system-ui, -apple-system, sans-serif;
  line-height: 1.1;
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.tash-store-badges a.store-badge:hover,
.tash-store-badges a.store-badge:focus {
  transform: translateY(-2px);
  border-color: rgba(69, 218, 248, 0.35);
  box-shadow: 0 10px 28px rgba(35, 51, 64, 0.18);
  color: #fff !important;
  text-decoration: none !important;
}

.tash-store-badges .store-badge__icon {
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.tash-store-badges .store-badge__icon svg {
  display: block;
  width: 24px;
  height: 24px;
  max-width: none;
}

.tash-store-badges .store-badge--apple .store-badge__icon svg {
  fill: currentColor;
}

.tash-store-badges .store-badge__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  line-height: 1.1;
  min-width: 0;
}

.tash-store-badges .store-badge__line {
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.01em;
  opacity: 0.88;
  white-space: nowrap;
  color: #fff;
}

.tash-store-badges .store-badge__brand {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.02em;
  white-space: nowrap;
  color: #fff;
}

@media (max-width: 575px) {
  .tash-store-badges .store-badges {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .tash-store-badges a.store-badge {
    width: 200px;
    height: 52px;
  }
}
