:root {
  --ml-color-primary: #d2191f;
  --ml-color-primary-dark: #b9161d;
  --ml-color-ink: #121212;
  --ml-color-text: #242424;
  --ml-color-muted: #67697c;
  --ml-color-blue: #345995;
  --ml-color-accent: #d4a018;
  --ml-color-white: #ffffff;
  --ml-color-surface: #ffffff;
  --ml-color-surface-soft: #f4f4f4;
  --ml-color-surface-strong: #e3e3e3;
  --ml-color-border: rgba(18, 18, 18, 0.12);
  --ml-color-border-strong: rgba(18, 18, 18, 0.22);

  --ml-font-family: "Source Sans 3", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --ml-font-size-xs: 0.75rem;
  --ml-font-size-sm: 0.875rem;
  --ml-font-size-base: 1rem;
  --ml-font-size-md: 1.125rem;
  --ml-font-size-lg: 1.25rem;
  --ml-font-size-xl: clamp(1.7rem, 1.25rem + 1.65vw, 3rem);
  --ml-button-font-size: 0.875rem;

  --ml-font-weight-regular: 400;
  --ml-font-weight-medium: 500;
  --ml-font-weight-bold: 700;
  --ml-font-weight-black: 900;

  --ml-line-height-tight: 1.05;
  --ml-line-height-heading: 1.12;
  --ml-line-height-body: 1.5;

  --ml-page-max-width: 1600px;
  --ml-content-max-width: 1120px;
  --ml-page-padding: clamp(1rem, 3.2vw, 2.5rem);

  --ml-space-1: 0.25rem;
  --ml-space-2: 0.5rem;
  --ml-space-3: 0.75rem;
  --ml-space-4: 1rem;
  --ml-space-5: 1.5rem;
  --ml-space-6: 2rem;
  --ml-space-7: 3rem;
  --ml-space-8: 4rem;

  --ml-radius-sm: 8px;
  --ml-radius-md: 12px;
  --ml-radius-lg: 18px;
  --ml-radius-pill: 999px;

  --ml-shadow-sm: 0 8px 18px rgba(18, 18, 18, 0.08);
  --ml-shadow-md: 0 14px 32px rgba(18, 18, 18, 0.13);
  --ml-shadow-button: 0 8px 16px rgba(18, 18, 18, 0.16);
  --ml-focus-ring: 0 0 0 3px rgba(212, 160, 24, 0.36);

  --ml-transition-fast: 0.18s ease;
  --ml-transition-base: 0.24s ease;
}

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

html {
  min-height: 100%;
  font-family: var(--ml-font-family);
  line-height: var(--ml-line-height-body);
  text-size-adjust: 100%;
}

body {
  min-height: 100%;
  margin: 0;
  overflow-x: clip;
  background: var(--ml-color-surface);
  color: var(--ml-color-text);
  font-family: var(--ml-font-family);
  font-size: var(--ml-font-size-base);
  font-weight: var(--ml-font-weight-regular);
  line-height: var(--ml-line-height-body);
}

body,
button,
input,
select,
textarea {
  font-family: var(--ml-font-family);
}

img,
svg,
video,
canvas {
  display: block;
  max-width: 100%;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
[type="button"],
[type="submit"],
[type="reset"] {
  cursor: pointer;
}

a {
  color: inherit;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.16em;
}

a:hover,
a:focus-visible {
  color: var(--ml-color-primary);
}

:focus-visible {
  outline: 0;
  box-shadow: var(--ml-focus-ring);
}

::selection {
  background: var(--ml-color-accent);
  color: var(--ml-color-ink);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 0.65em;
  color: var(--ml-color-ink);
  font-family: var(--ml-font-family);
  line-height: var(--ml-line-height-heading);
}

h1 {
  font-size: clamp(2rem, 1.45rem + 2.4vw, 4rem);
  font-weight: var(--ml-font-weight-black);
  letter-spacing: -0.045em;
}

h2 {
  font-size: var(--ml-font-size-xl);
  font-weight: var(--ml-font-weight-bold);
  letter-spacing: -0.035em;
}

h3 {
  font-size: clamp(1.3rem, 1.1rem + 0.65vw, 1.85rem);
  font-weight: var(--ml-font-weight-bold);
  letter-spacing: -0.02em;
}

h4 {
  font-size: var(--ml-font-size-lg);
  font-weight: var(--ml-font-weight-bold);
}

h5,
h6 {
  font-size: var(--ml-font-size-md);
  font-weight: var(--ml-font-weight-medium);
}

p,
ul,
ol,
dl,
blockquote,
figure,
table {
  margin-top: 0;
  margin-bottom: var(--ml-space-4);
}

strong,
b {
  font-weight: var(--ml-font-weight-bold);
}

small {
  font-size: var(--ml-font-size-sm);
}

hr {
  height: 1px;
  margin: var(--ml-space-6) 0;
  border: 0;
  background: var(--ml-color-border);
}

table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}

th,
td {
  padding: 0.8rem;
  border-bottom: 1px solid var(--ml-color-border);
  text-align: left;
  vertical-align: middle;
}

th {
  color: var(--ml-color-ink);
  font-weight: var(--ml-font-weight-bold);
}

.ml-container,
#inner-content.container,
#primary.content-area.container,
.ml-content-product_container {
  width: min(calc(100% - (2 * var(--ml-page-padding))), var(--ml-page-max-width));
  max-width: var(--ml-page-max-width);
  margin-inline: auto;
  padding-inline: 0;
}

#inner-content.container,
#primary.content-area.container,
.ml-content-product_container {
  padding-top: clamp(1.5rem, 3vw, 2.5rem);
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
}

.ml-content {
  width: min(100%, var(--ml-content-max-width));
}

.ml-stack {
  display: flex;
  flex-direction: column;
  gap: var(--ml-space-4);
}

.ml-cluster {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--ml-space-3);
}

.ml-visually-hidden,
.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  border: 0;
  white-space: nowrap;
}

p.product-format .format-icons,
p.format .format-icons,
.ml-product-card__format-icons,
.ml-list-product__format-icons {
  font-family: Musicland, musicland, sans-serif;
  font-size: 1rem;
  line-height: 1;
}

@media (max-width: 767.98px) {
  :root {
    --ml-page-padding: 1rem;
    --ml-font-size-base: 0.975rem;
  }

  h1 {
    font-size: clamp(1.8rem, 1.35rem + 4vw, 2.8rem);
  }

  h2 {
    font-size: clamp(1.45rem, 1.1rem + 4vw, 2.15rem);
  }
}

.ml-front-page .ml-section {
  position: relative;
  isolation: isolate;
  overflow: visible;
  padding: clamp(1.4rem, 2.4vw, 2.4rem) 0 clamp(2.4rem, 3.6vw, 4rem);
  margin-bottom: clamp(2.2rem, 3.4vw, 4rem);
  border-bottom: 0;
}


.ml-front-page .ml-section::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  right: calc(var(--ml-site-gutter, var(--ml-page-pad-x)) * -0.55);
  bottom: clamp(0.8rem, 1.4vw, 1.4rem);
  left: calc(var(--ml-site-gutter, var(--ml-page-pad-x)) * -0.55);
  border-radius: clamp(14px, 1.6vw, 24px);
  background:
    linear-gradient(
      180deg,
      rgba(18, 18, 18, 0.035) 0%,
      rgba(18, 18, 18, 0.018) 42%,
      rgba(255, 255, 255, 0) 100%
    );
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    inset 0 -1px 0 rgba(18, 18, 18, 0.045);
  pointer-events: none;
}

.ml-front-page .ml-section::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background:
    linear-gradient(
      90deg,
      var(--ml-color-primary) 0,
      var(--ml-color-primary) clamp(48px, 5vw, 80px),
      rgba(18, 18, 18, 0.14) clamp(48px, 5vw, 80px),
      rgba(18, 18, 18, 0.055) 72%,
      transparent 100%
    );
  pointer-events: none;
}
