.bf-status {
    padding:4px 8px;
    border-radius:20px;
    font-size:12px;
    font-weight:600;
}

.bf-visible {
    background:#e8f5e9;
    color:#2e7d32;
}

.bf-flagged {
    background:#fff3e0;
    color:#ef6c00;
}

.bf-hidden {
    background:#ffebee;
    color:#c62828;
}

.bf-type-review {
    background:#e8f5e9;
    color:#2e7d32;
    padding:2px 6px;
    border-radius:6px;
    font-size:11px;
    font-weight:600;
}

.bf-type-reply {
    background:#e3f2fd;
    color:#1565c0;
    padding:2px 6px;
    border-radius:6px;
    font-size:11px;
    font-weight:600;
}

.bf-show-review,
.bf-show-reply {
    background: transparent;
    border: 1px solid #555;
    color: #ccc;
    font-size: 0.75rem;
    padding: 2px 6px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-block;
    width: auto;
}

.bf-show-review:hover,
.bf-show-reply:hover {
    background: #333;
    color: #fff;
    border-color: #888;
}

#bf-toast-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.bf-toast {
    background: #1f1f1f;
    color: #fff;
    padding: 12px 16px;
    border-radius: 8px;
    min-width: 220px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.4);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    border-left: 4px solid #ffd700;
}

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

.bf-toast.success { border-color: #4caf50; }
.bf-toast.error { border-color: #ff5252; }
.bf-toast.info { border-color: #2196f3; }

.bf-review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.bf-review-header p {
    margin: 0;
}

.bf-header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.bf-header-actions .bf-report-review {
    background: transparent;
    border: 1px solid #444;
    color: #ff5252;
    border-radius: 6px;
    padding: 5px 8px;
    cursor: pointer;
    transition: 0.2s;
}

.bf-header-actions .bf-report-review:hover {
    background: #2a2a2a;
    transform: scale(1.1);
}

.bf-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

/* More menu container */
.bf-more {
    position: relative;
}

/* κουμπί ⋮ */
.bf-more-btn {
    background: #2a2a2a;
    border: 1px solid #444;
    color: #fff;
    border-radius: 6px;
    padding: 6px 10px;
    cursor: pointer;
}

/* dropdown */
.bf-more-menu {
    position: absolute;
    right: 0;
    top: 110%;
    background: #1f1f1f;
    border: 1px solid #444;
    border-radius: 8px;
    padding: 6px;
    display: none;
    flex-direction: column;
    min-width: 160px;
    z-index: 100;
}

/* items μέσα */
.bf-more-menu button {
    background: none;
    border: none;
    color: #eee;
    text-align: left;
    padding: 8px;
    cursor: pointer;
    border-radius: 6px;
}

.bf-more-menu button:hover {
    background: #333;
}

.bf-review-comment,
.bf-review-reply-text {
    overflow-wrap: anywhere;
    word-break: break-word;
    white-space: pre-line;
}

/* Skeleton container */
.bf-skeleton {
    position: relative;
    overflow: hidden;
    background: #2a2a2a;
    border-radius: 10px;
}

/* shimmer effect */
.bf-skeleton::after {
    content: "";
    position: absolute;
    top: 0;
    left: -150%;
    width: 150%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,0.08),
        transparent
    );
    animation: bfSkeletonLoading 1.2s infinite;
}

@keyframes bfSkeletonLoading {
    0% { left: -150%; }
    100% { left: 100%; }
}

/* lines */
.bf-skeleton-line {
    height: 12px;
    background: #3a3a3a;
    margin-bottom: 8px;
    border-radius: 6px;
}

.bf-skeleton-line.short { width: 40%; }
.bf-skeleton-line.medium { width: 70%; }
.bf-skeleton-line.long { width: 90%; }

.bf-listings-text {
    color: white;  /* το κανονικό κείμενο γίνεται λευκό */
    font-weight: normal;
}

.bf-gold-user {
    color: gold;
    font-weight: bold; /* προαιρετικά για να φαίνεται πιο εντυπωσιακό */
}

/* Trust score container */
.bf-seller-trust {
    margin-top: 8px;   /* πάντα κάτω από τα badges */
    width: 100%;   
}

/* Μπάρα αξιοπιστίας */
.bf-trust-score-bar {
    height: 10px;
    background: #eee;
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 4px;
}

/* Γέμισμα της μπάρας */
.bf-trust-score-fill {
    height: 100%;
    border-radius: 5px;
    transition: width 0.4s ease;
}

/* Ετικέτα αξιοπιστίας */
.bf-trust-score-label {
    font-size: 0.85rem;
    font-weight: 500;
    color: #555;
}

.bf-trust-score-label span {
    font-weight: 600;
    margin-left: 4px;
}

.bf-open-reply-modal {
    display: inline-block;
    margin-top: 12px;
    padding: 10px 14px;
    text-align: center;
    background: linear-gradient(135deg, #f5c542, #e0a800);
    color: #000;
    font-weight: 600;
    font-size: 14px;
    border-radius: 8px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

/* Hover */
.bf-open-reply-modal:hover {
    background: linear-gradient(135deg, #ffd65a, #f0b400);
    color: #000;
    transform: translateY(-1px);
    box-shadow: 0 5px 14px rgba(0, 0, 0, 0.3);
}

/* Active (click) */
.bf-open-reply-modal:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
}

/* Emoji badges κάτω από avatar */
.bf-seller-badges-emoji {
    display: flex;
    justify-content: flex-start; /* αριστερά */
    gap: 0.2rem;          /* πιο κοντά μεταξύ τους */
    align-items: center;
    margin-top: 2px;
}

/* Κουμπιά μέσα στο modal (Απάντηση / Επεξεργασία / Περισσότερα) */
#bf-modal .bf-reply-submit,
#bf-modal .bf-reply-cancel,
.bf-view-more {
    display: inline-block;
    margin-top: 12px;
    padding: 10px 14px;
    text-align: center;
    background: linear-gradient(135deg, #f5c542, #e0a800);
    color: #000;
    font-weight: 600;
    font-size: 14px;
    border-radius: 8px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

/* Hover */
#bf-modal .bf-reply-submit:hover,
#bf-modal .bf-reply-cancel:hover,
.bf-view-more:hover {
    background: linear-gradient(135deg, #ffd65a, #f0b400);
    color: #000;
    transform: translateY(-1px);
    box-shadow: 0 5px 14px rgba(0, 0, 0, 0.3);
}

/* Active (click) */
#bf-modal .bf-reply-submit:active,
#bf-modal .bf-reply-cancel:active,
.bf-view-more:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
}

/* Overlay του modal */
#bf-modal {
    display: none;
    position: fixed;
    inset: 0;

    align-items: center;
    justify-content: center;

    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(4px);
    z-index: 9999;
}

/* όταν ανοίγει */
#bf-modal.active {
    display: flex;
}

/* Κεντρικό περιεχόμενο */
#bf-modal-content {
    background: #1f1f1f;
    border-radius: 15px;
    max-width: 800px;
    width: 90%;
    max-height: 85vh;

    display: flex;
    flex-direction: column;

    overflow: hidden;
    padding: 25px 30px;

    box-shadow: 0 10px 40px rgba(0,0,0,0.6);
    border: 1px solid #ffd700;

    position: relative; /* 🔥 ΣΗΜΑΝΤΙΚΟ FIX */
}

@keyframes bfModalFade {
    from {
        opacity: 0;
        transform: translate(-50%, -48%) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

@media (max-width: 600px) {
    #bf-modal-content {
        width: 95%;       /* σχεδόν full screen */
        padding: 20px;    /* λίγο πιο μικρό padding */
    }
}

/* Κουμπί κλεισίματος */
#bf-modal-close {
    position: sticky;
    top: 0;
    margin-left: auto;
    z-index: 1000;

    font-size: 22px;
    cursor: pointer;
    color: #ffd700;
    font-weight: bold;

    display: flex;              /* 🔥 CHANGE */
    align-items: center;        /* 🔥 */
    justify-content: flex-end;  /* 🔥 */

    background: #1f1f1f;
    padding: 10px 0;

    transition: transform 0.25s ease; /* 🔥 IMPORTANT */
}

#bf-modal-close:hover {
    transform: rotate(90deg);
}

/* Scrollable body */
#bf-modal-body {
    color: #fff;
    overflow-y: auto;
    flex-grow: 1;
    padding-right: 10px;
}

/* Scrollbar */
#bf-modal-body::-webkit-scrollbar {
    width: 10px;
}

#bf-modal-body::-webkit-scrollbar-thumb {
    background: #ffd700;
    border-radius: 5px;
}

#bf-modal-body::-webkit-scrollbar-track {
    background: #2a2a2a;
}

/* Lock background scroll */
body.modal-open {
    overflow: hidden;
}

/* Styling για review items */
.bf-review-item {
    margin-bottom: 10px;
    padding: 10px;
    background: #202020;
    border-radius: 8px;

    animation: fadeIn 0.3s ease;
}

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

.bf-review-reply {
    margin-top: 8px;
    padding: 8px;
    background: #2a2a2a;
    border-left: 3px solid #ffd700;
    border-radius: 6px;
}

.bf-reply-form {
    margin-top: 10px;
}

.bf-reply-text {
    width: 100%;
    height: 100px;
}

.bf-reply-status {
    margin: 5px 0;
    color: #ffd700;
}

.bf-reply-submit,
.bf-reply-cancel {
    margin-right: 5px;
    padding: 5px 10px;
    cursor: pointer;
}


.bf-next-badge-progress {
        margin-top: 15px;
        background: #222;
        padding: 12px 15px;
        border-radius: 8px;
        border: 1px solid #333;
        color: #eee;
        font-family: sans-serif;
    }
    .bf-next-badge-progress p {
        margin: 0 0 8px;
        font-weight: bold;
    }
    .bf-progress-bar {
        width: 100%;
        background: #333;
        height: 12px;
        border-radius: 6px;
        overflow: hidden;
        margin-bottom: 5px;
    }
    .bf-progress-fill {
        height: 100%;
        background: linear-gradient(90deg, #00cfff, #ffd700);
        width: 0;
        transition: width 0.5s ease;
    }
    .bf-next-badge-progress small {
        font-size: 0.85rem;
        color: #ccc;
    }

    .bf-badges-guide {
        max-width: 800px;
        margin: 40px auto;
        padding: 30px;
        background: linear-gradient(145deg, #1a1a1a, #222);
        color: #eee;
        border-radius: 14px;
        border: 1px solid #333;
        box-shadow: 0 0 18px rgba(255, 215, 0, 0.15);
        font-family: sans-serif;
    }

    .bf-badges-guide h2 {
        color: #ffd700;
        margin-bottom: 15px;
        font-size: 2rem;
    }

    .bf-badges-list {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
    }

    .bf-badge-item {
        position: relative;
        background: #333;
        padding: 12px 18px;
        border-radius: 8px;
        cursor: pointer;
        transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .bf-badge-item:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 18px rgba(255, 215, 0, 0.4);
    }

    .bf-badge-name {
        font-weight: bold;
        color: #ffd700;
    }

    .bf-badge-tooltip {
        display: block;
        margin-top: 6px;
        font-size: 0.95rem;
        color: #ccc;
    }

    /* Responsive για κινητά */
    @media (max-width: 600px){
        .bf-badges-list{
            flex-direction: column;
            gap: 10px;
        }
    }

.bf-badges-guide-wrapper {
    margin-top: 15px;
    max-width: 600px;
}

.bf-badges-toggle {
    background: linear-gradient(145deg, #222, #1a1a1a);
    color: #ffd700;
    border: 1px solid #333;
    padding: 8px 14px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    transition: background 0.3s, transform 0.2s;
}

.bf-badges-toggle:hover {
    background: linear-gradient(145deg, #1a1a1a, #222);
    transform: translateY(-2px);
}

/* Κουμπί κλεισίματος Badges - ίδιο ακριβώς στυλ με το άνοιγμα */
.bf-badges-close {
    background: linear-gradient(145deg, #222, #1a1a1a);
    color: #ffd700;
    border: 1px solid #333;
    padding: 8px 14px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    transition: background 0.3s, transform 0.2s;
}

.bf-badges-close:hover {
    background: linear-gradient(145deg, #1a1a1a, #222);
    transform: translateY(-2px);
}

.bf-badges-close {
    display: block;
    margin: 15px auto 5px;
}

.bf-badges-guide-content {
    max-height: 0;
    overflow: hidden;
    margin-top: 8px;
    background: #1a1a1a;
    padding: 0 14px;
    border-radius: 8px;
    border: 1px solid #333;
    color: #ccc;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.bf-badges-guide-content ul {
    margin: 10px 0;
    padding-left: 20px;
}

.bf-badges-guide-content li {
    margin-bottom: 6px;
}
	
.bf-seller-header {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 8px;
}

.bf-seller-header h2 {
    margin: 0;
}

.bf-registered-date {
    margin-top: 6px;
}	
	
.bf-seller-profile {
	isolation: isolate;
    max-width: 800px;
    margin: 30px auto;
    padding: 25px 30px;
    background: linear-gradient(145deg, #1a1a1a, #222);
    border-radius: 14px;
    border: 1px solid #333;
    color: #eee;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    box-shadow: 0 0 18px rgba(255, 215, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.bf-seller-profile:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(255, 215, 0, 0.25);
}

.bf-seller-avatar img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 2px solid #555;
    object-fit: cover;
    box-shadow: none;
}

/* 🏁 Starter Seller — μπλε */
.bf-seller-avatar.bf-avatar-starter img {
    border-color: #00cfff;
    box-shadow: 0 0 10px rgba(0, 207, 255, 0.25);
}

/* ⚡ Active Seller — χρυσό */
.bf-seller-avatar.bf-avatar-active img {
    border-color: #ffd700;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

/* 🔥 Advanced Seller — πορτοκαλί */
.bf-seller-avatar.bf-avatar-advanced img {
    border-color: #ff8c00;
    box-shadow: 0 0 12px rgba(255, 140, 0, 0.35);
}

/* 🏆 Top Seller — coral */
.bf-seller-avatar.bf-avatar-top img {
    border-color: #ff6f61;
    box-shadow: 0 0 16px rgba(255, 111, 97, 0.5);
}

.bf-seller-info h2 {
    color: #ffd700;
    font-size: 1.6rem;
    margin: 0 0 10px 0;
}

.bf-seller-info p,
.bf-seller-info .bf-response-rate,
.bf-seller-info .bf-average-time {
    margin: 0 0 6px 0;
    color: #ccc;
    font-size: 1rem;
}

.bf-seller-info .bf-response-rate,
.bf-seller-info .bf-average-time {
    font-weight: 500;
}

/* Responsive για μικρές οθόνες */
@media (max-width: 600px) {
    .bf-seller-profile {
		
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .bf-seller-avatar img {
        width: 120px;
        height: 120px;
    }
    .bf-seller-info h2 {
        font-size: 1.5rem;
    }
}	

.bf-total-rating {
    max-width: 800px;
    margin: 30px auto;
    padding: 25px 30px;
    background: linear-gradient(145deg, #1a1a1a, #222);
    border-radius: 14px;
    border: 1px solid #333;
    color: #eee;
    box-shadow: 0 0 18px rgba(255, 215, 0, 0.15);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.bf-total-rating:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(255, 215, 0, 0.25);
}

.bf-total-rating h2 {
    color: #ffd700;
    font-size: 1.8rem;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.bf-rating-stars {
    font-size: 1.6rem;
    margin-bottom: 8px;
    animation: bfStarPulse 1s ease forwards;
}

.bf-rating-count {
    font-size: 1.1rem;
    color: #ccc;
}

.bf-no-rating {
    font-size: 1.2rem;
    color: #bbb;
    font-style: italic;
}

/* μικρό animation για τα αστέρια */
@keyframes bfStarPulse {
    0% { transform: scale(0.8); opacity: 0; }
    50% { transform: scale(1.1); opacity: 1; }
    100% { transform: scale(1); opacity: 1; }
}

.bf-response-rate {
    margin-top: 6px;
    font-size: 14px;
    color: #ccc;
}

.bf-response-rate strong {
    color: #ffd700;
}			
		
.bf-toggle-btn::after {
    content: " ⤢";
    font-size: 0.9em;
    opacity: 0.7;
    transition: transform 0.25s ease;
}

.bf-toggle-btn:hover::after {
    transform: scale(1.2);
}		
		
	/* Κουμπί toggle για βαθμολογίες & κριτικές – improved */
.bf-toggle-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    background: linear-gradient(145deg, #ffd700, #ffc700);
    color: #111;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    text-align: center;
    gap: 6px;
    transition: all 0.25s ease-in-out;
	text-decoration: none;
}

.bf-toggle-btn:hover {
    background: linear-gradient(145deg, #ffc700, #ffd700);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.25);
}

.bf-toggle-btn .bf-count {
    font-size: 0.85em;
    color: #333;
    font-weight: 600;
}

.bf-toggle-btn .bf-arrow {
    display: inline-block;
    transition: transform 0.2s ease;
}

.bf-toggle-btn.open .bf-arrow {
    transform: rotate(180deg); /* δείχνει πάνω όταν ανοιχτό */
}
		
	.bf-reply-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    background: linear-gradient(145deg, #ffd700, #ffc700);
    color: #111;
    border-radius: 10px;
    font-weight: 700;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 0.95rem;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    transition: all 0.25s ease-in-out;
}

.bf-reply-btn:hover {
    background: linear-gradient(145deg, #ffc700, #ffd700);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.25);
}
		
    .bf-user-cards {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 20px;
        max-width: 1200px;
        margin: 30px auto;
        padding: 0 15px;
    }
    .bf-user-card {
        position: relative;
        background-color: #1e1e1e;
        border: 1px solid #333;
        border-radius: 12px;
        padding: 20px;
        color: #eee;
        box-shadow: 0 0 12px rgba(255, 215, 0, 0.1);
        transition: transform 0.2s ease, box-shadow 0.3s ease;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        overflow: hidden;
    }
    .bf-user-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
    }
    .bf-user-card-image {
        max-width: 100%;
        max-height: 160px;
        width: auto;
        height: auto;
        object-fit: contain;
        border-radius: 8px;
        margin-bottom: 12px;
        display: block;
        background: #111;
    }
    .bf-promoted-badge {
        position: absolute;
        top: 12px;
        left: 12px;
        background: rgba(255, 69, 0, 0.85);
        color: #fff;
        font-weight: 700;
        padding: 5px 12px;
        border-radius: 6px;
        font-size: 0.9rem;
        z-index: 10;
        user-select: none;
    }
    .bf-user-card-title {
        font-size: 1.1rem;
        font-weight: bold;
        margin-bottom: 10px;
        color: #ffd700;
    }
    .bf-user-card-title a {
        color: #ffd700;
        text-decoration: none;
    }
    .bf-user-card-title a:hover {
        text-decoration: underline;
        color: #fff;
    }
    .bf-user-card-meta {
        margin-top: 12px;
        font-size: 0.9rem;
        color: #ccc;
        line-height: 1.4;
    }
    .bf-user-card-meta p {
        margin: 4px 0;
    }
    .bf-status {
        font-size: 0.9rem;
        color: #aaa;
        margin-top: 8px;
        font-style: italic;
    }
    .pending-title {
        color: #777;
        cursor: not-allowed;
    }
    .bf-promo-expiry {
        margin-top: 8px;
        font-size: 0.9rem;
        color: #ffa500;
    }
		
.bf-view-more {
    display: block;
    margin-top: 12px;
    padding: 10px 14px;
    text-align: center;
    background: linear-gradient(135deg, #f5c542, #e0a800);
    color: #000;
    font-weight: 600;
    font-size: 14px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.25s ease;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

/* Hover */
.bf-view-more:hover {
    background: linear-gradient(135deg, #ffd65a, #f0b400);
    color: #000;
    transform: translateY(-1px);
    box-shadow: 0 5px 14px rgba(0, 0, 0, 0.3);
}

/* Active (click) */
.bf-view-more:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
}		
		
.bf-seller-badges {
    display: flex;       /* βάζει τα badges σε σειρά */
    flex-wrap: wrap;     /* αν δεν χωράνε, πηγαίνουν στην επόμενη γραμμή */
    gap: 6px;            /* απόσταση μεταξύ τους */
    margin-bottom: 8px;
    position: relative;  /* relative container για future positioning */
    z-index: auto;       /* όχι στατικό z-index που μπορεί να κάνει overlap */
}

.bf-status-badge {
    background: rgba(255, 215, 0, 0.12);
    border: 1px solid rgba(255, 215, 0, 0.35);
    color: #ffd700;
    font-size: 0.75rem;
    padding: 4px 8px;
    border-radius: 6px;
    font-weight: 600;
    line-height: 1;
    pointer-events: auto; /* αλλάξτο σε auto για να αποφύγουμε περίεργα layering */
    position: relative;   /* ΣΗΜΑΝΤΙΚΟ: relative για να μην μπλέκονται */
    z-index: auto;
}	
		
.bf-status-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(255, 255, 255, 0.3);
}

.bf-badge-emoji {
    font-size: 1.1em; /* μεγαλύτερο emoji */
    line-height: 1;
}		

.bf-my-listings-container {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 12px;
    color: #eee;
}

.bf-my-listings-title {
    color: #ffd700;
    margin-bottom: 12px;
}

/* Κύριο container της λίστας αξιολογήσεων */
.bf-ratings-list {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 12px;
    color: #eee;
    box-shadow: 0 0 12px rgba(255, 215, 0, 0.1);
}

/* Τίτλος */
.bf-ratings-list h2 {
    color: #ffd700;
    margin-bottom: 16px;
}

/* Κάθε block αξιολόγησης */
.bf-rating-item {
    margin-bottom: 12px;
    padding: 12px;
    background: #202020;
    border-radius: 10px;
    box-shadow: 0 0 6px rgba(255, 215, 0, 0.1);
    transition: all 0.2s ease;

    animation: fadeIn 0.3s ease;
}

/* Όνομα χρήστη & ημερομηνία */
.bf-rating-user {
    margin: 0 0 4px 0;
}

.bf-rating-username {
    color: #ffd700;
}

.bf-rating-date {
    color: #ccc;
    font-size: 0.9em;
}

/* Αστέρια αξιολόγησης */
.bf-rating-stars {
    margin: 0;
    color: #ffd700;
}

/* Container κριτικών */
.bf-reviews-list {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 12px;
    color: #eee;
    box-shadow: 0 0 12px rgba(255, 215, 0, 0.1);
}

/* Τίτλος κριτικών */
.bf-reviews-title {
    color: #ffd700;
    margin-bottom: 16px;
}

/* Κάθε review */
.bf-review-item {
    margin-bottom: 14px;
    padding: 14px;
    background: #202020;
    border-radius: 10px;
    box-shadow: 0 0 6px rgba(255, 215, 0, 0.1);

    animation: fadeIn 0.3s ease;
}

/* User name + date */
.bf-review-user {
    margin: 0 0 4px 0;
}

.bf-review-username {
    color: #ffd700;
}

.bf-review-date {
    color: #ccc;
    font-size: 0.9em;
}

/* Το σχόλιο */
.bf-review-comment {
    overflow-wrap: anywhere;
    word-break: break-word;
    white-space: normal;
    margin: 4px 0;
    color: #eee;
}

/* Απάντηση Πωλητή */
.bf-review-reply {
    margin-top: 8px;
    padding: 10px;
    background: #2a2a2a;
    border-left: 3px solid #ffd700;
    border-radius: 6px;
}

/* Όνομα πωλητή – ΧΡΥΣΟ */
.bf-review-reply-author,
.bf-review-reply-author strong {
    color: #ffd700 !important;
    font-weight: 600;
}

/* Κείμενο απάντησης – ΑΣΠΡΟ */
.bf-review-reply-text {
    overflow-wrap: anywhere;
    word-break: break-word;
    white-space: normal;
    margin: 0;
    color: #fff;
}

/* Ημερομηνία απάντησης – γκρι */
.bf-review-reply-date {
    font-size: 12px;
    color: #aaa;
    margin-top: 4px;
}

/* Κουμπί Απάντησης σε Αγγελία */
.bf-review-reply-link {
    margin-top: 8px;
    display: inline-block;
    text-decoration: none;
}

.bf-reviews-list.bf-no-reviews {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 12px;
    color: #eee;
}

.bf-reviews-list.bf-no-reviews h2 {
    color: #ffd700;
    margin-bottom: 12px;
}

.bf-no-listings {
    padding: 10px;
    background: #202020;
    border-radius: 8px;
}

.bf-total-views {
    margin-bottom: 25px;
    text-align: center;
    background: #2a2a2a;
    color: #ffd700;
    font-weight: 700;
    padding: 12px 20px;
    border-radius: 10px;
    font-size: 1.2rem;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
    display: inline-block;
}

/* =========================
   MOBILE FIX (REVIEWS HEADER)
========================= */
@media (max-width: 768px) {

    .bf-review-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }

    /* όνομα + ημερομηνία */
    .bf-review-header p {
        width: 100%;
        font-size: 14px;
    }

    /* 🚩 + ⋮ */
    .bf-header-actions {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    /* 🚩 */
    .bf-header-actions .bf-report-review {
        font-size: 13px;
        padding: 6px 10px;
    }

    /* ⋮ */
    .bf-more-btn {
        padding: 6px 10px;
        font-size: 18px;
    }

    /* dropdown να μην κόβεται */
    .bf-more-menu {
        right: 0;
        left: auto;
    }

    /* reply button FULL WIDTH */
    .bf-open-reply-modal {
        width: 100%;
        text-align: center;
    }

    /* spacing */
    .bf-actions {
        width: 100%;
    }

}
