/* Base styles */
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  text-align: center;
  background-color: #f5f5f5;
}

/* QR component */
.qr__container {
  background-color: white;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  display: inline-block;
  margin-top: 20px;
}

.qr__icon {
  width: 64px;
  height: 64px;
  margin-bottom: 16px;
  border-radius: 50%;
}

.qr__title {
  margin: 0 0 20px;
  font-size: 24px;
  color: #333;
}

.qr__code {
  margin: 20px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.qr__store-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin: 24px 0 16px;
}

.qr__store-link {
  display: inline-block;
  transition: opacity 0.2s ease;
}

.qr__store-link:hover {
  opacity: 0.8;
}

.qr__store-image {
  height: 40px;
  width: auto;
}

/* Button styles */
.button {
  display: block;
  padding: 12px 24px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 8px;
  transition: background-color 0.2s ease;
}

.button--primary {
  background-color: #007aff;
  color: white;
}

.button--primary:hover {
  background-color: #0056b3;
}

/* Responsive adjustments */
@media (max-width: 480px) {
  .qr__container {
    padding: 20px;
    margin: 0px;
    box-shadow: none;
  }

  body {
    background-color: white;
  }

  .qr__title {
    font-size: 20px;
  }

  .qr__store-buttons {
    flex-direction: column;
    align-items: center;
  }

  .qr__store-image {
    height: 48px;
  }
}
