:root {
    --adidas-ink: #101a33;
    --adidas-lime: #c8ff2f;
    --adidas-paper: #fbfcf7;
    --adidas-line: #dfe5d7;
}

body {
    background: var(--adidas-paper);
}

#header {
    background: var(--adidas-ink);
    box-shadow: 0 8px 28px rgba(16, 26, 51, .14);
}

#header .logo-header,
#footer .logo-footer {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    width: auto;
    height: 34px;
    color: #fff;
    white-space: nowrap;
    min-width: 146px;
    flex: 0 0 146px;
    overflow: visible;
}

#header .brand-mark,
#footer .brand-mark {
    width: 34px;
    height: 28px;
    border-radius: 7px;
    object-fit: cover;
    object-position: center;
    background: var(--adidas-ink);
}

#footer .brand-mark {
    width: 42px;
    height: 34px;
}

.brand-wordmark {
    font-size: 15px;
    line-height: 1;
    letter-spacing: .06em;
    text-transform: uppercase;
    font-weight: 700;
}

.brand-wordmark strong {
    color: var(--adidas-lime);
    font-weight: 800;
}

/* The desktop navigation uses a light canvas; keep the lockup readable
   against it while preserving the dark mobile header. */
@media (min-width: 1200px) {
    #header {
        background: #fff;
    }

    #header .logo-header {
        min-width: 154px;
        flex-basis: 154px;
        color: var(--adidas-ink);
    }

    #header .brand-mark {
        width: 40px;
        height: 30px;
    }
}

@media (min-width: 1920px) {
    #header .logo-header {
        min-width: 174px;
        flex-basis: 174px;
    }
}

/* Use the paper canvas throughout catalogue utilities. The old theme used
   solid white panels, which made filters and sorting look disconnected. */
#filter_ .filter-content,
.options-sort .options-content,
.filters-btn-holder {
    background: var(--adidas-paper);
}

#filter_ .option_box > .option_name,
#filter_ .collapsible,
#filter_ .filter-data,
.options-sort select {
    background: transparent;
}

.product-gallery.gray,
.product-gallery,
.catalog-page,
.catalog-page .catalog-content,
.catalog-page .catalog-row,
.product-item .img-holder {
    background: transparent;
}

.product-gallery,
.catalog-page {
    border-color: var(--adidas-line);
}

.product-item .img-holder {
    border-radius: 10px;
}

.product-item .products_gray_text,
.product-item.not-available .img-holder .not-available-text {
    background: var(--adidas-paper);
    border: 1px solid var(--adidas-line);
}

.product-page .product-description .size-holder .select-list .select-item p {
    white-space: nowrap;
    letter-spacing: .01em;
}

@media (max-width: 767px) {
    .product-page .product-description .size-holder .select-list {
        width: 100%;
    }
}

@media (min-width: 1200px) {
    #filter_ .filter-content,
    .options-sort .options-content {
        background: transparent;
    }
}

.home-intro {
    position: relative;
    overflow: hidden;
    margin-top: 16px;
    padding-top: clamp(52px, 8vw, 112px);
    padding-bottom: clamp(44px, 7vw, 92px);
    border-bottom: 1px solid var(--adidas-line);
    background: linear-gradient(115deg, #f2f6e9 0%, #fbfcf7 58%, #e9f2d8 100%);
}

.home-intro::after {
    content: "";
    position: absolute;
    right: 7vw;
    bottom: 0;
    width: 28vw;
    height: 8px;
    background: var(--adidas-lime);
    transform: skewX(-32deg);
    transform-origin: right;
}

.home-intro__eyebrow {
    margin-bottom: 12px;
    color: var(--adidas-ink);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .2em;
}

.home-intro h1 {
    max-width: 860px;
    color: var(--adidas-ink);
    font-size: clamp(28px, 4vw, 58px);
    line-height: 1.08;
    letter-spacing: -.02em;
}

.product-gallery {
    border-bottom: 1px solid var(--adidas-line);
}

.product-gallery h2 {
    color: var(--adidas-ink);
}

.product-item {
    transition: transform .25s ease, box-shadow .25s ease;
}

.product-item:hover {
    transform: translateY(-4px);
}

@media (max-width: 767px) {
    #header .logo-header {
        gap: 6px;
        margin-left: 10px;
        min-width: 116px;
        flex-basis: 116px;
    }

    #header .brand-mark {
        width: 28px;
        height: 24px;
    }

    .brand-wordmark {
        font-size: 12px;
    }

    .home-intro {
        margin-top: 8px;
    }
}
