/* Minimal styles for the full-width bottom button */
.bwfb-wrapper{
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999999;
    padding: env(safe-area-inset-bottom) 0 0 0;
    pointer-events: none;
}

.bwfb-button{
    display: block;
    width: 100%;
    box-sizing: border-box;
    padding: 14px 20px;
    text-align: center;
    text-decoration: none;
    background: var(--bwfb-bg);
    color: var(--bwfb-color);
    font-family: var(--bwfb-font-family, system-ui, sans-serif);
    font-size: 16px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    pointer-events: auto;
    box-shadow: 0 -2px 14px rgba(0,0,0,0.08);
    -webkit-tap-highlight-color: transparent;
    transition: background-color 0.3s ease, color 0.3s ease;

}
.bwfb-button:hover{
    background: var(--bwfb-bg-hover);
    color: var(--bwfb-color-hover);
}

/* Mobile friendly hit-area */
@media (max-width: 480px) {
    .bwfb-button { padding: 16px 18px; font-size: 15px; }
}