@font-face {
    font-family: "Corbel Light";
    src: url("../fonts/corbel-light.ttf") format("truetype");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

:root {
    --fuzzy-yellow: #ffd800;
    --ink: #000000;
    --cart-blue: #222846;
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    min-height: 100%;
    background: #ffffff;
    color: var(--ink);
    font-family: "Corbel Light", Corbel, "Segoe UI", Arial, sans-serif;
    font-weight: 300;
}

body {
    overflow-x: hidden;
}

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

.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;
}

.site-header {
    position: relative;
    width: 100%;
    height: 265px;
    background: #ffffff;
}

.header-strip {
    position: absolute;
    top: 88px;
    left: 0;
    width: 100%;
    height: 107px;
    background: var(--fuzzy-yellow);
}

.brand-logo {
    position: absolute;
    z-index: 2;
    top: 15px;
    left: 121px;
    width: 248px;
    height: 248px;
    display: block;
    overflow: hidden;
    border-radius: 50%;
    background: var(--fuzzy-yellow);
    box-shadow: 0 0 0 3px var(--fuzzy-yellow);
}

.brand-logo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.site-search {
    position: absolute;
    z-index: 4;
    top: 31px;
    right: 36px;
    width: 254px;
    height: 41px;
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 0;
    padding: 0 16px;
    border: 1px solid #9a9a9a;
    background: #f2f2f2;
    color: #000000;
}

.site-search i {
    flex: 0 0 auto;
    font-size: 21px;
    color: #000000;
}

.site-search input {
    width: 100%;
    min-width: 0;
    height: 100%;
    padding: 0;
    border: 0;
    outline: none;
    background: transparent;
    color: #555555;
    font: inherit;
    font-size: 25px;
    letter-spacing: 0.04em;
}

.site-search input::placeholder {
    color: #555555;
    opacity: 1;
}

.header-actions {
    position: absolute;
    z-index: 3;
    top: 126px;
    right: 56px;
    display: flex;
    align-items: center;
    gap: 29px;
    line-height: 1;
    color: var(--ink);
}

.cart-copy {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 4px;
    font-size: 19px;
    letter-spacing: 0.055em;
    text-transform: uppercase;
}

.cart-price {
    display: inline-block;
    font-size: 21px;
    letter-spacing: 0.11em;
    white-space: nowrap;
}

.cart-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 37px;
    height: 37px;
    color: var(--cart-blue);
    font-size: 36px;
}

.home-canvas {
    min-height: calc(100vh - 265px);
    background: #ffffff;
}

@media (max-width: 1100px) {
    .site-header {
        height: 242px;
    }

    .header-strip {
        top: 81px;
        height: 99px;
    }

    .brand-logo {
        top: 15px;
        left: 36px;
        width: 213px;
        height: 213px;
    }

    .site-search {
        top: 28px;
        right: 27px;
        width: 230px;
        height: 37px;
        gap: 13px;
        padding: 0 14px;
    }

    .site-search i {
        font-size: 19px;
    }

    .site-search input {
        font-size: 22px;
    }

    .header-actions {
        top: 114px;
        right: 27px;
        gap: 19px;
    }

    .cart-copy {
        font-size: 17px;
    }

    .cart-price {
        font-size: 20px;
    }

    .home-canvas {
        min-height: calc(100vh - 242px);
    }
}

@media (max-width: 720px) {
    .site-header {
        height: 213px;
    }

    .header-strip {
        top: 70px;
        height: 85px;
    }

    .brand-logo {
        top: 20px;
        left: 15px;
        width: 153px;
        height: 153px;
    }

    .site-search {
        top: 18px;
        right: 14px;
        width: 150px;
        height: 30px;
        gap: 8px;
        padding: 0 10px;
    }

    .site-search i {
        font-size: 15px;
    }

    .site-search input {
        font-size: 15px;
        letter-spacing: 0.02em;
    }

    .header-actions {
        top: 95px;
        right: 14px;
        gap: 11px;
    }

    .cart-copy {
        font-size: 13px;
        gap: 3px;
    }

    .cart-price {
        font-size: 14px;
        letter-spacing: 0.05em;
    }

    .cart-action {
        width: 27px;
        height: 27px;
        font-size: 26px;
    }

    .home-canvas {
        min-height: calc(100vh - 213px);
    }
}
