.bct-fts {
    --bct-red: #c92f27;
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 9998;
    width: min(360px, calc(100vw - 32px));
    overflow: hidden;
    border: 1px solid rgba(20, 20, 20, 0.1);
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 18px 55px rgba(0, 0, 0, 0.28);
    color: #161616;
    opacity: 0;
    transform: translateX(calc(100% + 48px));
    transition: transform 420ms cubic-bezier(.22, .75, .25, 1), opacity 260ms ease;
    pointer-events: none;
}

.bct-fts.is-open {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.bct-fts__close {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2;
    width: 34px;
    height: 34px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.76);
    color: #fff;
    font: 400 25px/32px Arial, sans-serif;
    cursor: pointer;
}

.bct-fts__media {
    display: block;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #ececec;
}

.bct-fts__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bct-fts__body {
    padding: 18px 20px 20px;
}

.bct-fts__eyebrow {
    margin: 0 0 5px;
    color: var(--bct-red);
    font: 800 12px/1.2 Arial, sans-serif;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.bct-fts__title {
    margin: 0;
    color: #171717;
    font: 800 23px/1.16 Arial, sans-serif;
}

.bct-fts__price {
    margin: 9px 0 14px;
    color: #171717;
    font: 800 22px/1 Arial, sans-serif;
}

.bct-fts__button {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    border-radius: 8px;
    background: var(--bct-red);
    color: #fff !important;
    font: 800 15px/1 Arial, sans-serif;
    text-decoration: none !important;
}

.bct-fts__button:hover,
.bct-fts__button:focus-visible {
    background: #a9231d;
}

@media (max-width: 767px) {
    .bct-fts {
        right: 12px;
        bottom: 12px;
        width: calc(100vw - 24px);
        border-radius: 14px;
    }

    .bct-fts__media {
        aspect-ratio: 2 / 1;
    }

    .bct-fts__body {
        padding: 15px 17px 17px;
    }

    .bct-fts__title {
        font-size: 20px;
    }

    .bct-fts__price {
        margin: 7px 0 12px;
        font-size: 20px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .bct-fts {
        transition: none;
    }
}

