@font-face {
    font-family: "Stratum No1";
    src: url("stratum-no1-regular.ttf") format("truetype");
    font-display: swap;
}

:root {
    --sf-bg: #e8e5df;
    --sf-surface: #fff;
    --sf-ink: #171717;
    --sf-muted: #65615e;
    --sf-line: #d8d4ce;
    --sf-red: #d9191c;
    --sf-font: Arial, Helvetica, sans-serif;
    --color-black: #050505;
    --color-ink: #161616;
    --color-muted: #6f7378;
    --color-line: #e5e7eb;
    --color-red: #d9191c;
    --color-silver: #f4f5f6;
    --container: 1320px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: #fff;
    color: var(--color-ink);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.5;
}

body.storefront-theme {
    background: var(--sf-bg);
    color: var(--sf-ink);
    font-family: var(--sf-font);
    -webkit-font-smoothing: antialiased;
}

img {
    display: block;
    max-width: 100%;
}

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

.skip-link {
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 10000;
    padding: 10px 14px;
    color: #fff;
    background: #111;
    font-weight: 700;
    transform: translateY(-160%);
    transition: transform .15s ease;
}

.skip-link:focus {
    transform: translateY(0);
    transition: none;
}

:where(a, button, input, select, textarea, summary, [tabindex]):focus-visible {
    outline: 3px solid var(--color-red);
    outline-offset: 3px;
}

button,
input,
select {
    font: inherit;
}

.container {
    width: min(100% - 64px, var(--container));
    margin: 0 auto;
}

@media (max-width: 760px) {
    .container {
        width: min(100% - 32px, var(--container));
    }
}

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

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
    }
}
