.bf-flag-warning {
    position: absolute;
    top: 10px;
    right: 55px;

    background: #ff9800;
    color: #000;

    padding: 5px 10px;
    border-radius: 6px;

    font-size: 12px;
    font-weight: bold;

    z-index: 999;
}

/* TOOLTIP */
.bf-report-counter {
    position: absolute;
    bottom: 10px;
    right: 10px;

    background: rgba(0,0,0,0.75);
    color: #fff;

    padding: 4px 8px;
    border-radius: 6px;

    font-size: 12px;
    font-weight: bold;

    cursor: pointer;
}

/* Tooltip box */
.bf-report-counter::after {
    content: attr(data-reasons);

    position: absolute;
    bottom: 130%;
    right: 0;

    background: #111;
    color: #fff;

    padding: 6px 10px;
    border-radius: 6px;

    font-size: 12px;
    white-space: nowrap;

    opacity: 0;
    pointer-events: none;

    transform: translateY(5px);
    transition: 0.2s;

    box-shadow: 0 5px 15px rgba(0,0,0,0.4);
}

/* show */
.bf-report-counter:hover::after {
    opacity: 1;
    transform: translateY(0);
}

/* TOAST */
.bf-toast {
    position: fixed;
    bottom: 20px;
    right: 20px;

    background: #333;
    color: #fff;

    padding: 12px 18px;
    border-radius: 8px;

    opacity: 0;
    transform: translateY(20px);

    transition: all 0.3s ease;

    z-index: 999999;
}

.bf-toast.show {
    opacity: 1;
    transform: translateY(0);
}

.bf-toast.success { background: #28a745; }
.bf-toast.error { background: #dc3545; }
.bf-toast.info { background: #007bff; }

/* Title */
.bf-box h3 {
    color: #ffd700;
    text-align: center;
}

/* Buttons */
#bf-send {
    background: #28a745 !important;
    color: #fff !important;
}

#bf-close {
    background: #2f2f2f !important;
    color: #ccc !important;
}
/* =========================
   MODAL
========================= */
#bf-modal {
    position: fixed !important;
    inset: 0 !important;
    background: rgba(0,0,0,0.65) !important;
    display: none !important;

    z-index: 999999 !important;
    backdrop-filter: blur(4px);
}

#bf-modal.active {
    display: flex !important;
    align-items: center;
    justify-content: center;
}

/* Modal box */
.bf-box {
    background: #1f1f1f !important;
    color: #eee !important;
    padding: 20px !important;
    border-radius: 14px !important;
    width: 320px !important;
    max-width: 90% !important;

    box-shadow: 0 10px 40px rgba(0,0,0,0.3) !important;
    animation: bfFadeIn 0.2s ease;

    z-index: 1000000 !important;
}

@keyframes bfFadeIn {
    from { transform: translateY(10px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* =========================
   BUTTON RESET (🔥 CRITICAL FIX)
========================= */
.bf-report,
.bf-toggle {
    all: unset !important;              /* 🔥 σκοτώνει theme overrides */
    box-sizing: border-box !important;

    position: absolute !important;
    z-index: 999 !important;

    width: 38px !important;
    height: 38px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    border-radius: 50% !important;
    cursor: pointer !important;

    background: rgba(0,0,0,0.85) !important;
    color: #fff !important;

    font-size: 18px !important;
    line-height: 1 !important;
    font-family: "Segoe UI Emoji", "Apple Color Emoji", sans-serif !important;

    box-shadow: 0 2px 8px rgba(0,0,0,0.4) !important;
    transition: all 0.2s ease !important;
}

/* Positions */
.bf-report {
    top: 10px !important;
    right: 10px !important;
}

.bf-toggle {
    top: 10px !important;
    left: 10px !important;
}

/* Hover */
.bf-report:hover {
    background: #dc3545 !important;
    transform: scale(1.1);
}

.bf-toggle:hover {
    background: #ffc107 !important;
    color: #000 !important;
    transform: scale(1.1);
}

/* =========================
   IMAGE WRAPPER
========================= */
.bf-image-wrapper {
    position: relative !important;
}

/* =========================
   BLUR
========================= */
.bf-blur {
    filter: blur(18px) !important;
    opacity: 0.7 !important;
}

/* =========================
   OVERLAY
========================= */
.bf-blur-overlay {
    position: absolute !important;
    inset: 0 !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    background: rgba(0,0,0,0.65) !important;
    color: #fff !important;

    font-weight: bold !important;
    font-size: 14px !important;
    text-align: center !important;

    padding: 10px !important;
    border-radius: 10px !important;
}

/* =========================
   SWIPER FIX
========================= */
.swiper,
.swiper-slide {
    z-index: 1 !important;
}

/* =========================
   MOBILE
========================= */
@media (max-width: 480px) {

    .bf-report,
    .bf-toggle {
        width: 32px !important;
        height: 32px !important;
        font-size: 14px !important;
    }
}