:root {
  color: #202020;
  background: #ffffff;
  font-family: "Golos Text", Inter, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
  margin: 0;
}

body {
  min-height: 100svh;
  background: #ffffff;
}

.store-picker {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  width: min(390px, 100%);
  min-height: 100svh;
  padding: 24px 16px;
  margin: 0 auto;
  justify-content: center;
}

h1 {
  margin: 0;
  color: #202020;
  font-size: 36px;
  font-weight: 500;
  line-height: 44px;
  letter-spacing: 0;
  text-align: center;
}

.store-links {
  display: grid;
  gap: 16px;
  width: min(300px, 100%);
}

.store-link {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 96px;
  padding: 16px;
  border-radius: 24px;
  color: #ffffff;
  font-size: 20px;
  font-weight: 500;
  line-height: 28px;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.store-link--wildberries {
  background: linear-gradient(270deg, #953ffd 0%, #f868dd 100%);
}

.store-link--ozon {
  background: #3d82ff;
}

.store-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgb(32 32 32 / 18%);
}

.store-link:focus-visible {
  outline: 3px solid #202020;
  outline-offset: 4px;
}

.store-link:active {
  transform: translateY(0);
}

.store-link__icon {
  display: grid;
  place-items: center;
  flex: 0 0 64px;
  width: 64px;
  height: 64px;
  overflow: hidden;
  border-radius: 16px;
}

.store-link__icon img {
  display: block;
  width: 100%;
  height: 100%;
}

@media (max-width: 360px) {
  .store-picker {
    gap: 28px;
  }

  h1 {
    font-size: 32px;
    line-height: 38px;
  }

  .store-link {
    min-height: 88px;
    font-size: 18px;
  }

  .store-link__icon {
    flex-basis: 56px;
    width: 56px;
    height: 56px;
  }
}
