*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
}

body {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: #2c1810;
  -webkit-font-smoothing: antialiased;
}

.page {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding: 2rem 1.5rem 3rem;
  background:
    linear-gradient(
      to top,
      rgba(44, 24, 16, 0.55) 0%,
      rgba(44, 24, 16, 0.2) 35%,
      transparent 65%
    ),
    url("srajtofle_purse_on_table.jpg") center / cover no-repeat fixed;
  background-color: #5a4a3a;
}

.content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  max-width: 36rem;
  text-align: center;
}

.tagline {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  font-weight: 500;
  line-height: 1.5;
  color: #fff;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.45);
  letter-spacing: 0.01em;
}

.store-badges {
  --badge-height: 52px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1rem 1.25rem;
}

.store-badge {
  display: flex;
  align-items: center;
  height: var(--badge-height);
  line-height: 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.store-badge:hover {
  transform: scale(1.04);
  opacity: 0.92;
}

.store-badge:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 4px;
  border-radius: 6px;
}

.store-badge img {
  display: block;
  height: var(--badge-height);
  width: auto;
  object-fit: contain;
}

@media (min-width: 480px) {
  .store-badges {
    --badge-height: 60px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .store-badge {
    transition: none;
  }

  .store-badge:hover {
    transform: none;
  }
}
