/* Hide Footer on Landing Page */
body:has(.kbf-landing-page) .uppr_parent_div,
body:has(.kbf-landing-page) .content > footer {
    display: none;
}

/* Countdown Bar */
.kbf-bar {
    padding: 12px 0;
    background: #202020;
    color: white;
}

.kbf-bar-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
    justify-content: space-between;
}

.kbf-bar-item__summary {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 4px;
}

.kbf-bar-item__title {
    margin: 0;
    font-weight: 700;
    font-size: 20px;
    line-height: 1;
}

.kbf-bar-item__description {
    font-size: 12px;
    line-height: 1.4;
}

.kbf-bar-item__counter {
    display: flex;
    gap: 20px;
}

.kbf-bar-item__unit {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.kbf-bar-item__value {
    font-weight: 700;
    font-size: 20px;
    line-height: 1;
}

.kbf-bar-item__label {
    font-size: 10px;
    line-height: 1.4;
    text-transform: uppercase;
    opacity: 0.5;
}

@media (min-width: 768px) {
    .kbf-bar-item {
        flex-direction: row;
    }

    .kbf-bar-item__summary {
        text-align: left;
        align-items: start;
    }
}

@media (min-width: 1024px) {
    .kbf-bar-item {
        max-width: 800px;
        margin-inline: auto;
    }

    .kbf-bar-item__summary {
        flex-direction: row;
        align-items: center;
        gap: 0;
    }

    .kbf-bar-item__description {
        border-left: 1px solid #656565;
        padding-left: 24px;
        margin-left: 24px;
        max-width: 32ch;
    }
}

/* 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;
}

.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: #202020;
    color: white;
}

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

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

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

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

.kbf-usp-item__description {
    font-size: 12px;
    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 {
        padding: 64px 0;
    }

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

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

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

@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 .kxl-products {
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
    }
}