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

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

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

/* Το ίδιο το emoji badge */
.bf-seller-badges-emoji .bf-status-badge {
    background: rgba(255, 215, 0, 0.08);
    border: 1px solid rgba(255, 215, 0, 0.25);
    border-radius: 5px;
    padding: 1px 3px;     /* ⬅ πιο μικρό */
    font-size: 0.95rem;  /* ⬅ κύριο shrink */
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

/* Hover – subtle, όχι φούσκωμα */
.bf-seller-badges-emoji .bf-status-badge:hover {
    transform: scale(1.1); /* ⬅ αντί για 1.2 */
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.35);
}

/* Tooltip */
.bf-seller-badges-emoji .bf-status-badge::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%);
    background: #222;
    color: #ffd700;
    padding: 4px 8px;
    font-size: 0.7rem;   /* ⬅ λίγο πιο μικρό */
    border-radius: 6px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.15s ease, transform 0.15s ease;
    z-index: 9999;
}

.bf-seller-badges-emoji .bf-status-badge:hover::after {
    opacity: 1;
    transform: translateX(-50%) translateY(-4px);
}

.bf-listing-author {
    display: flex;
    align-items: center;
    gap: 8px; /* λίγο πιο αέρας */
    font-size: 14px;
    color: #f5f5f5; /* πιο premium, λευκό/ανοιχτό */
    margin: 8px 0;
    font-weight: 500;
    transition: color 0.3s ease;
}

.bf-listing-author:hover {
    color: #ffd700; /* subtle gold highlight στο hover */
}

/* Avatar premium */
.bf-author-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid #ffd700;
    object-fit: cover;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.bf-author-avatar:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 10px rgba(255, 215, 0, 0.3);
}

.bf-button-view {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.bf-button-view:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255,215,0,0.6);
}

/* Πουλήθηκε με pulse glow */
.bf-button-sold {
    margin-top: 10px;
    background: linear-gradient(135deg, #7a1e1e, #b22222);
    color: #fff;
    cursor: not-allowed;
    opacity: 0.85;
    border: none;
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 600;
    position: relative;
    transition: box-shadow 0.3s ease, transform 0.2s ease;
}

/* Ελαφρύ pulse glow */
.bf-button-sold::after {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: 12px;
    background: rgba(255, 50, 50, 0.4);
    opacity: 0;
    animation: pulseGlow 1.6s infinite;
    pointer-events: none;
}

@keyframes pulseGlow {
    0% { opacity: 0.2; transform: scale(0.95); }
    50% { opacity: 0.5; transform: scale(1.05); }
    100% { opacity: 0.2; transform: scale(0.95); }
}

/* Προαιρετικό hover effect για να φαίνεται ακόμα πιο “highlighted” */
.bf-button-sold:hover {
    box-shadow: 0 0 14px rgba(255, 50, 50, 0.9);
    transform: translateY(-2px);
}

/* CTA */
.bf-button-view {
    margin-top: 10px;
}

.bf-thumb-fallback {
    width: 100%;
    height: 140px;
    background: linear-gradient(135deg, #111, #1a1a1a);
    border-radius: 10px;
}

.bf-listing-thumb {
    position: relative;
}

.bf-rating-empty {
    opacity: 0.6;
    font-size: 13px;
}

.bf-badge-new {
    position: absolute;
    top: 8px;
    right: 36px;
    background: linear-gradient(135deg, #00bfff, #007acc);
    color: #fff;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    box-shadow: 0 0 10px rgba(0,191,255,.5);
}

.bf-badge-new::before {
    content: "🆕";
    margin-right: 4px;
}

.bf-button-view {
    margin-top: 10px;
}

.bf-badge {
    position: absolute;
    top: 8px;
    padding: 4px 10px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 999px;
    backdrop-filter: blur(6px);
}

.bf-badge-promoted {
    left: 8px;
    background: rgba(224,62,47,0.9);
    box-shadow: 0 0 12px rgba(224,62,47,0.45);
}

.bf-listing-card {
    position: relative;
}

.bf-slider-title {
    position: relative;
    margin: 22px auto 20px;
    text-align: center;

    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.6px;

    color: #ffd700;

    text-shadow:
        0 0 6px rgba(255,215,0,0.35),
        0 2px 6px rgba(0,0,0,0.8);
}

/* Χρυσή λεπτή γραμμή από κάτω */
.bf-slider-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    margin: 10px auto 0;

    background: linear-gradient(
        90deg,
        transparent,
        rgba(255,215,0,0.9),
        transparent
    );

    border-radius: 2px;
    box-shadow: 0 0 10px rgba(255,215,0,0.6);
}

.bf-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 6px 0 8px;
    padding: 4px 8px;
    background: rgba(0,0,0,0.45);
    border-radius: 6px;
    width: fit-content;
}

.bf-rating-stars {
    font-size: 15px;
    line-height: 1;
}

.bf-rating-stars .star {
    color: #444;
}

.bf-rating-stars .star.filled {
    color: gold;
    text-shadow: 0 0 4px rgba(255,215,0,0.6);
}

.bf-rating-meta {
    font-size: 12px;
    color: #ddd;
}

.bf-rating-meta strong {
    color: gold;
    font-weight: bold;
}
	
	.bf-price-badge {
    display: inline-block;
    background: #28a745;     /* πράσινο */
    color: #fff;             /* άσπρα γράμματα */
    font-weight: bold;
    font-size: 1.1em;
    padding: 6px 12px;
    border-radius: 20px;     /* στρογγυλεμένες άκρες */
    box-shadow: 0 2px 6px rgba(0,0,0,0.15); /* ελαφριά σκιά */
}	
        .bf-promoted-slider .slick-prev,
.bf-promoted-slider .slick-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%) scale(0.9);
    width: 46px;
    height: 46px;
    border-radius: 50%;

    background: rgba(18, 18, 18, 0.65);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);

    border: 1px solid rgba(255, 215, 0, 0.25);
    box-shadow:
        0 6px 18px rgba(0,0,0,0.55),
        inset 0 0 0 rgba(255,215,0,0);

    color: #ffd700;
    font-size: 24px;
    cursor: pointer;
    z-index: 10;

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

    transition:
        opacity 0.35s ease,
        transform 0.35s cubic-bezier(.4,0,.2,1),
        box-shadow 0.35s ease,
        background 0.35s ease;
}

/* Εμφάνιση στο hover του slider */
.bf-promoted-slider:hover .slick-prev,
.bf-promoted-slider:hover .slick-next {
    opacity: 0.85;
    transform: translateY(-50%) scale(1);
}

/* Premium hover */
.bf-promoted-slider .slick-prev:hover,
.bf-promoted-slider .slick-next:hover {
    opacity: 1;
    background: rgba(20, 20, 20, 0.9);

    box-shadow:
        0 10px 26px rgba(0,0,0,0.75),
        0 0 16px rgba(255,215,0,0.55);

    transform: translateY(-50%) scale(1.08);
}

/* Θέσεις */
.bf-promoted-slider .slick-prev { left: 10px; }
.bf-promoted-slider .slick-next { right: 10px; }

/* Απενεργοποίηση default slick icons */
.bf-promoted-slider .slick-prev::before,
.bf-promoted-slider .slick-next::before {
    display: none !important;
}

/* Slide padding */
.bf-promoted-slider .slick-slide {
    padding: 4px 0;
    box-sizing: border-box;
}

        .bf-listing-thumb img {
            width: 100%;
            height: 180px;
            object-fit: cover;
            object-position: center;
            background: #111;
            border-radius: 8px;
            display: block;
            margin: 0 auto;
            transition: transform 0.3s ease;
        }
        .bf-listing-thumb img:hover { transform: scale(1.05); }

        .bf-author-avatar {
            width: 20px !important;
            height: 20px !important;
            border-radius: 50% !important;
            vertical-align: middle;
            margin-right: 6px;
            box-shadow: 0 0 4px rgba(0, 0, 0, 0.5);
            transition: box-shadow 0.3s ease;
        }
        .bf-author-avatar:hover { box-shadow: 0 0 10px rgba(255, 215, 0, 0.8); }

        .bf-promoted-slider .bf-listing-card {
		    margin-top: 14px; /* μικρό κενό πάνω από κάθε κάρτα */
		    margin: 18px; /* μικρό κενό πάνω/κάτω και δεξιά/αριστερά */
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            border: 1px solid #333;
            border-radius: 8px;
            background: #1b1b1b;
            padding: 12px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.4);
            transition: box-shadow 0.3s ease, transform 0.3s ease;
            font-size: 14px;
            height: 100%;
            overflow: visible;
        }
        .bf-promoted-slider .bf-listing-card:hover {
            box-shadow: 0 8px 20px rgba(255, 215, 0, 0.7);
            transform: translateY(-5px);
        }

        .bf-promoted-slider .bf-listing-card h3 {
            font-size: 15px;
            margin-bottom: 5px;
            color: gold;
            line-height: 1.3;
            font-weight: bold;
        }

        .bf-promoted-slider .bf-listing-card p {
            margin: 3px 0;
            line-height: 1.4;
        }

        .bf-promoted-slider .bf-listing-content {
            display: flex;
            flex-direction: column;
            gap: 2px;
            flex-grow: 1;
            justify-content: flex-start;
            margin-top: 10px;
        }

/* Κρύβουμε arrows σε κινητά */
@media (max-width: 768px) {
  .bf-promoted-slider .slick-prev,
  .bf-promoted-slider .slick-next {
    display: none !important;
  }
}

.bf-swipe-symbol {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  background: rgba(0,0,0,0.7);
  padding: 12px 20px;
  border-radius: 30px;
  z-index: 20;
  text-align: center;
  pointer-events: none;
  animation: bfSwipeHorizontal 1.2s infinite alternate ease-in-out;
}

/* Horizontal swipe animation: αριστερά ↔ δεξιά */
@keyframes bfSwipeHorizontal {
  0% { transform: translate(-65%, -50%); }
  50% { transform: translate(-50%, -50%); }
  100% { transform: translate(-35%, -50%); }
}
	
/* Desktop: hover effect για όλες τις κάρτες του slider */
  .bf-listing-card.bf-red-glow:hover {
    box-shadow:
      0 14px 36px rgba(224, 62, 47, 0.45),
      0 0 26px rgba(224, 62, 47, 0.55);
    transform: translateY(-5px);
  }

	/* Mobile & tablet: red glow effect για όλες τις κάρτες του slider */
@media (max-width: 768px) {
  .bf-listing-card.bf-in-view.bf-red-glow {
    box-shadow:
      0 14px 36px rgba(224, 62, 47, 0.45),
      0 0 26px rgba(224, 62, 47, 0.55) !important;
    transform: translateY(-5px);
  }
}