#cbp-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99999;
    height: 140px;
    pointer-events: none;
}

@media (max-width: 768px) {
    #cbp-bar { display: block; }
}

#cbp-vehicle-layer {
    position: absolute;
    bottom: 52px;
    left: 0; right: 0;
    height: 100px;
    pointer-events: none;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    animation: cbpVehicleMove 6s linear infinite;
}

@keyframes cbpVehicleMove {
    from { transform: translateX(110vw); }
    to   { transform: translateX(-350px); }
}

#cbp-vehicle-layer img {
    height: 86px;
    width: auto;
    display: block;
    animation: cbpBounce 0.3s ease-in-out infinite alternate;
}

@keyframes cbpBounce {
    from { transform: translateY(0); }
    to   { transform: translateY(-2.5px); }
}

#cbp-link {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 56px;
    background: #2e7d32;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    overflow: hidden;
    z-index: 1;
    pointer-events: all;
    text-decoration: none;
    animation: cbpBarPulse 2.5s ease-in-out infinite;
    padding-bottom: env(safe-area-inset-bottom, 0px);
}

@keyframes cbpBarPulse {
    0%,100% { background: #2e7d32; }
    50%     { background: #388e3c; }
}

#cbp-link .cbp-shine {
    position: absolute;
    top: 0; bottom: 0; width: 80px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
    animation: cbpShine 2.2s linear infinite;
    pointer-events: none;
}

@keyframes cbpShine {
    from { left: -80px; }
    to   { left: 100%; }
}

#cbp-link .cbp-inner {
    position: relative; z-index: 1;
    display: flex; align-items: center; gap: 12px;
}

#cbp-link .cbp-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: #69f0ae;
    flex-shrink: 0;
    animation: cbpDot 1.2s ease-in-out infinite;
}

@keyframes cbpDot {
    0%,100% { opacity: 1; transform: scale(1); }
    50%     { opacity: .5; transform: scale(1.5); }
}

#cbp-link .cbp-text {
    display: flex;
    flex-direction: column;
}

#cbp-link .cbp-cta {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 10px; font-weight: 700;
    color: rgba(255,255,255,.8);
    text-transform: uppercase; letter-spacing: .07em;
    line-height: 1.3;
}

#cbp-link .cbp-num {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 19px; font-weight: 700;
    color: #fff; letter-spacing: .04em;
    line-height: 1.2;
}

#cbp-link .cbp-available {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 9px; font-weight: 700;
    color: #69f0ae;
    text-transform: uppercase; letter-spacing: .1em;
    line-height: 1.3;
    animation: cbpAvail 1.5s ease-in-out infinite;
}

@keyframes cbpAvail {
    0%,100% { opacity: 1; }
    50%     { opacity: 0.4; }
}
