:root {
    --cf-pink: #f3c7d0;
    --cf-pink-strong: #efa9b8;
    --cf-green: #56b400;
    --cf-green-dark: #469600;
    --cf-text: #666666;
    --cf-heading: #555555;
    --cf-border: #e9e9e9;
    --cf-white: #ffffff;
    --cf-black: #222222;
    --cf-container: 1440px;
    --cf-font: 'Larsseit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

@font-face {
    font-family: 'Larsseit';
    src: url('../fonts/larsseit/larsseit-light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Larsseit';
    src: url('../fonts/larsseit/larsseit.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Larsseit';
    src: url('../fonts/larsseit/larsseit-medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Larsseit';
    src: url('../fonts/larsseit/larsseit-bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

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

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

body {
    margin: 0;
    min-width: 320px;
    background: var(--cf-white);
    color: var(--cf-text);
    font-family: var(--cf-font);
    font-size: 15px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

body.mobile-menu-open,
body.search-modal-open,
body.catalog-filters-open,
body.mini-cart-open {
    overflow: hidden;
}

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

button,
a {
    -webkit-tap-highlight-color: transparent;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color .2s ease, background-color .2s ease, border-color .2s ease, opacity .2s ease;
}

a:hover,
a:focus-visible {
    color: var(--cf-pink-strong);
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0 0 .6em;
    color: var(--cf-heading);
    font-family: var(--cf-font);
    font-weight: 500;
    line-height: 1.25;
}

p {
    margin: 0 0 1em;
}

.site {
    min-height: 100vh;
    overflow: clip;
}

.container {
    width: min(calc(100% - 40px), var(--cf-container));
    margin-right: auto;
    margin-left: auto;
}

/* The former theme used a 1120px desktop step and a full 1440px wide step. */
@media (min-width: 1200px) and (max-width: 1439px) {
    :root {
        --cf-container: 1120px;
    }
}

.site-main {
    min-height: 40vh;
}

.section-padding,
.page-main,
.archive-main,
.search-main,
.blog-main,
.single-main {
    padding: 55px 0;
}

.entry-content::after {
    display: table;
    clear: both;
    content: '';
}

.container::after {
    display: none;
    content: none;
}

.screen-reader-text {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.screen-reader-text:focus {
    top: 8px;
    left: 8px;
    z-index: 100000;
    width: auto;
    height: auto;
    padding: 12px 18px;
    clip: auto !important;
    background: #fff;
    color: #111;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .2);
}

:focus-visible {
    outline: 2px solid var(--cf-green);
    outline-offset: 3px;
}

.button,
button.button,
input.button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 10px 22px;
    border: 0;
    border-radius: 4px;
    background: var(--cf-green);
    color: #fff;
    font-weight: 600;
    cursor: pointer;
}

.button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
    background: var(--cf-green-dark);
    color: #fff;
}
