:root {
  --c-purple: #413677;
  --c-purple-deep: #372d63;
  --c-purple-soft: #4d4188;
  --c-purple-line: #564a96;
  --c-green: #009839;
  --c-green-bright: #16b04a;
  --c-green-dark: #007e2f;
  --c-white: #ffffff;
  --c-muted: #b9aee0;
  --c-price-old: #9f93d4;
  --c-overlay: rgba(20, 14, 45, 0.55);

  --f-display: "Fredoka", system-ui, -apple-system, sans-serif;
  --f-body: "Nunito", system-ui, -apple-system, sans-serif;

  --r-pill: 999px;
  --r-card: 16px;
  --r-img: 14px;

  --promo-h: 34px;
  --header-h: 60px;
  --maxw: 1200px;
  --pad: 16px;

  --shadow-card: 0 6px 20px rgba(15, 10, 40, 0.28);
  --shadow-fab: 0 8px 24px rgba(0, 0, 0, 0.35);
}

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

* {
  margin: 0;
  padding: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.5;
  color: var(--c-white);
  background: var(--c-purple);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body.is-locked {
  overflow: hidden;
}

h1,
h2,
h3,
h4 {
  font-family: var(--f-display);
  font-weight: 600;
  line-height: 1.1;
}

img,
picture,
svg,
iframe {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

input {
  font: inherit;
}

ul,
ol {
  list-style: none;
}

.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--pad);
}

.section {
  padding-block: 30px;
}

.section-title {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(28px, 9vw, 38px);
  text-align: center;
  line-height: 1.05;
  margin-bottom: 22px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}
