#bc-bf-bar {
    position: fixed !important;
    top: 0 !important;
    left: 0;
    right: 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);

    width: 100%;
    padding: 10px 20px;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
    font-size: 15px;
    color: #ffffff;
    z-index: 99999;}

.bc-bf-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.bc-bf-left {
    flex: 1 1 auto;
}

.bc-bf-text {
    font-weight: 600;
}

.bc-bf-timer {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 0 0 auto;
}

.bc-bf-time-box {
    min-width: 60px;
    padding: 6px 8px;
    border-radius: 8px;
    text-align: center;
    background: rgba(0,0,0,0.25);
}

.bc-bf-number {
    display: block;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.1;
}

.bc-bf-label {
    display: block;
    font-size: 11px;
    opacity: 0.9;
}

.bc-bf-right {
    flex: 0 0 auto;
}

.bc-bf-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 22px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.25);
    transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
}

.bc-bf-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    opacity: 0.95;
}

.bc-bf-cta:active {
    transform: translateY(0);
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}

/* Color schemes */

.bc-bf-scheme-amazon {
    background: #131921;
    color: #ffffff;
}

.bc-bf-scheme-amazon .bc-bf-cta {
    background: #ff9900;
    color: #111111;
}

.bc-bf-scheme-orange {
    background: #ff9900;
    color: #ffffff;
}

.bc-bf-scheme-orange .bc-bf-cta {
    background: #0b2f6a;
    color: #ffffff;
}

/* Responsive */

@media (max-width: 768px) {
    .bc-bf-inner {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }

    .bc-bf-right {
        width: 100%;
    }

    .bc-bf-cta {
        width: 100%;
        justify-content: center;
    }
}

/* Heading-style text */
.bc-bf-heading {
    margin: 0;
    font-size: 22px;
    line-height: 1.2;
    font-weight: 700;
    color: #ffffff !important;
}

/* Center the headline like the reference bar */
.bc-bf-left {
    flex: 1 1 auto;
    text-align: center;
}
/* Bar text color options */
.bc-bf-heading--white {
    color: #ffffff !important;
}

.bc-bf-heading--black {
    color: #000000 !important;
}
