body {
  background: var(--bg);
  color: var(--text);
}

.app {
  width: min(var(--app-width), 100%);
  min-height: 100vh;
  margin: 0 auto;
  padding: 14px 14px 92px;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 2px 14px;
  backdrop-filter: blur(14px);
}

.section {
  margin-top: 22px;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 12px;
}

.section h2 {
  margin: 0;
  font-size: 22px;
  letter-spacing: -0.3px;
}

.section small {
  color: var(--muted);
  font-weight: 700;
}

@media (max-width: 360px) {
  h1 {
    font-size: 26px;
  }

  .quick-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .product {
    grid-template-columns: 84px 1fr;
  }

  .photo {
    width: 84px;
    height: 84px;
  }
}
