/* ==========================================================================
   Wodeco Review Badge v1.2.0 — Pill/Tag stili, yorum ikonu, sarı zemin
   ========================================================================== */

/* Kart wrapper'ına position:relative garantisi */
.elementor-portfolio .elementor-post,
.elementor-portfolio .elementor-post__card,
.elementor-posts-container .elementor-post,
.elementor-posts-container .elementor-post__card,
.elementor-portfolio-item,
.e-loop-item {
    position: relative;
    overflow: visible !important;
}

/* ── Badge (pill) ── */
.wrb-badge {
    position: absolute;
    bottom: 14px;
    left: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background-color: #F5C518;
    color: #111111;
    padding: 5px 11px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
    z-index: 20;
    pointer-events: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.35);
    animation: wrbFadeIn 0.3s ease both;
    font-family: inherit;
    letter-spacing: 0.02em;
    text-transform: none;
}

/* ── İkon ── */
.wrb-badge__icon {
    width: 13px;
    height: 13px;
    flex-shrink: 0;
    fill: #111111;
}

/* ── Giriş animasyonu ── */
@keyframes wrbFadeIn {
    from { opacity: 0; transform: translateY(4px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .wrb-badge {
        font-size: 11px;
        padding: 4px 9px;
        bottom: 10px;
        left: 10px;
        gap: 5px;
    }
    .wrb-badge__icon {
        width: 11px;
        height: 11px;
    }
}
