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

:root {
  --store-primary-color: #ff9c33;
  --store-secondary-color: #ffb703;
  --store-neutral-color: #ffffff;
  --store-buy-button-color: #0fba31;
  --store-attention-red-color: #ed1515;
  --store-fixed-yellow-color: #f5b800;
  --site-radius: 12px;
}

html {
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
}

@supports not (scrollbar-gutter: stable) {
  @media (min-width: 768px) {
    html {
      overflow-y: scroll;
    }
  }
}

body {
  font-family: "Inter", sans-serif;
  background-color: #fff;
  color: #333;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

/* Header */
.top-banner {
  background-color: var(--store-primary-color);
  color: white;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 16px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
}

.header {
  background-color: #fff;
  height: 60px;
  padding: 0 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 1px solid #f0f0f0;
  position: static;
  top: 0;
  z-index: 100;
}

.logo {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo img {
  height: 40px;
  max-height: 40px;
  width: auto;
  display: block;
}

.logo a {
  display: inline-flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  border-radius: var(--site-radius);
  -webkit-tap-highlight-color: transparent;
  transition: opacity 0.14s ease;
}

.logo a:focus {
  outline: none;
}

.logo a:focus-visible {
  outline: 2px solid rgba(31, 41, 55, 0.25);
  outline-offset: 3px;
}

.logo a.is-click-flash {
  opacity: 0.82;
}

/* Footer */
.footer {
  background-color: var(--store-neutral-color);
  border-top: 1px solid #e8e8e8;
}

.storefront-neutral-surface {
  background-color: var(--store-neutral-color);
}

.policies-popup-link {
  display: block;
  color: #555;
  text-decoration: none;
  font-size: 14px;
  padding: 8px;
  background: var(--store-neutral-color);
  border-radius: var(--site-radius);
  text-align: center;
}

html,
body {
  min-height: 100vh;
}

body {
  display: flex;
  flex-direction: column;
}

main,
.home-content,
.policy-content,
.page-content {
  flex: 1;
}
