/* Hero Section */
.kbf-hero {
    padding: 48px 0;
    background: linear-gradient(to bottom, #202020, #0D0D0D);
    color: white;
}

.kbf-hero-banner {
    text-align: center;
}

.kbf-hero-banner__link {
    text-decoration: none;
    color: inherit;
}

.kbf-hero-banner__title {
    font-size: 20px;
    line-height: 1.4;
    text-transform: uppercase;
    margin: 0;
    color: white;
    opacity: 0.7;
}

.kbf-hero .kbf-title {
    font-weight: 700;
    font-size: 32px;
    line-height: 1;
    text-transform: uppercase;
    margin: 16px 0;
}

.kbf-hero .kbf-desc {
    font-size: 16px;
    line-height: 1.4;
    opacity: 0.5;
}

.kbf-hero-banner__button {
    margin-top: 24px;
}

.kbf-hero-banner__image {
    display: block;
    margin-top: 20px;
    margin-inline: auto;
    max-width: 512px;
    width: 100%;
    height: auto;
}

.kbf-hero-banner__arrow-down {
    display: none; /* flex */
    justify-content: center;
    margin-top: 24px;
    padding: 12px;
    color: white;
    cursor: pointer;

    * {
        pointer-events: none;
    }
}

.kbf-sale-page .kbf-hero-banner__image {
    display: none;
}

.kbf-sale-page .kbf-hero-banner__button {
    display: none;
}

.kbf-sale-page .kbf-hero-banner__arrow-down {
    display: flex;
}

@media (min-width: 1024px) {
    .kbf-hero {
        padding: 64px 0;
    }

    .kbf-hero .kbf-title {
        font-size: 48px;
    }
}

/* USP Bar */
.kbf-usp {
    padding: 48px 0;
    background: #f5f5f5;
    color: black;
}

.kbf-usp__grid {
    display: grid;
    gap: 12px;
}

.kbf-usp-item {
    display: flex;
    gap: 12px;
    align-items: center;
}

.kbf-usp-item__image {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.kbf-usp-item__title {
    margin: 0;
    font-size: 14px;
    line-height: 1.4;
    font-weight: 700;
}

.kbf-usp-item__description {
    font-size: 14px;
    line-height: 1.4;
    margin-top: 4px;
}

@media (min-width: 580px) {
    .kbf-usp__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .kbf-usp__grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Products */
.kbf-products__header {
    background: #202020;
    color: white;
    padding: 24px;
}

.kbf-products__title {
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
    text-align: center;
    color: white;
}

.kbf-products__listing {
    padding: 12px 0 24px;;
}

.kbf-products__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.kbf-products__list > article {
    width: 100%;
    padding: 0;
    overflow: hidden;
}

.kbf-products__list .thumbnail {
    display: flex;
    flex-direction: column;
    height: 100%;
    margin: 0;
}

.kbf-products__list .thumbnail .caption {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.kbf-products__list .thumbnail .caption h3 {
    flex-grow: 1;
}

.kbf-products__list .thumbnail .price {
    height: auto;
}

.kbf-products-actions {
    text-align: center;
    margin-top: 24px;
}

.kbf-products-load-more {
    display: inline-block;
    padding: 8px 24px;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    background-color: #bbb65c;
    color: white;
    text-decoration: none;
    transition: .2s;

    &:hover {
        background-color: #292929;
        color: white;
        text-decoration: none;
    }
}

#kbf-main-content {
    margin-bottom: -25px;
}

body:has(#kbf-main-content) .usp-wrap {
    display: none;
}

@media (min-width: 1024px) {
    .kbf-products__header {
        padding: 48px 0;
    }

    .kbf-products__title {
        font-size: 48px;
    }

    .kbf-products__listing {
        padding: 24px 0 48px;
    }

    .kbf-products__list {
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
    }
}