/* Ewanto Header Trustami Bar */
.ewanto-header-trustami {
    background: #F5F5F5;
    border-bottom: 2px solid #D9400B;
    padding: 12px 0;
    font-size: 14px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

.ewanto-header-trustami .container {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ===== DESKTOP LAYOUT ===== */
.desktop-layout {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

/* Mobile Layout verstecken auf Desktop */
.mobile-layout {
    display: none;
}

/* ===== Trustami Label (KLICKBAR) ===== */
.ewanto-header-trustami .trustami-label-link {
    font-weight: 700;
    font-size: 16px;
    text-decoration: none !important;
    transition: opacity 0.3s ease;
}

.ewanto-header-trustami .trustami-label-link:hover {
    opacity: 0.8;
    text-decoration: none !important;
}

/* FIX: Trust ami OHNE Lücke */
.ewanto-header-trustami .trustami-text {
    display: inline;
    font-size: 0;
}

.ewanto-header-trustami .trust-blue {
    color: #00A8E1 !important;
    font-size: 16px;
}

.ewanto-header-trustami .trust-green {
    color: #7FBF3F !important;
    font-size: 16px;
}

/* Sterne */
.ewanto-header-trustami .stars {
    display: inline-flex;
    gap: 2px;
    font-size: 18px;
    letter-spacing: 2px;
}

.ewanto-header-trustami .stars .star {
    display: inline-block;
}

.ewanto-header-trustami .star-filled {
    color: #FFD700 !important;
}

.ewanto-header-trustami .star-half {
    color: #FFD700 !important;
    opacity: 0.6;
}

.ewanto-header-trustami .star-empty {
    color: #CCCCCC !important;
}

/* Orange Zahlen */
.ewanto-header-trustami .rating-value {
    font-weight: 900 !important;
    color: #D9400B !important;
    font-size: 18px;
}

/* Rating Separator und Max */
.ewanto-header-trustami .rating-separator {
    color: #666666 !important;
    font-weight: normal;
    margin: 0 3px;
    font-size: 16px;
}

.ewanto-header-trustami .rating-max {
    color: #666666 !important;
    font-size: 14px;
    font-weight: 400;
}

.ewanto-header-trustami .reviews-count {
    font-weight: 900 !important;
    color: #D9400B !important;
    font-size: 16px;
}

/* Grünes Positiv */
.ewanto-header-trustami .positive-percent {
    font-weight: 700;
    color: #4CAF50 !important;
    font-size: 16px;
}

/* Normaler Text */
.ewanto-header-trustami .text-normal {
    color: #333 !important;
    font-weight: 400;
}

/* EINHEITLICHE SEPARATOR - ALLE GLEICH DÜNN */
.ewanto-header-trustami .separator {
    color: #999 !important;
    margin: 0 8px;
    font-weight: 300;
    font-size: 14px;
}

/* Versandinfo */
.ewanto-header-trustami .shipping-icon {
    font-size: 18px;
}

.ewanto-header-trustami .shipping-price {
    font-weight: 700;
    color: #D9400B !important;
    font-size: 16px;
}

.ewanto-header-trustami .text-highlight {
    font-weight: 600;
    color: #333 !important;
}

/* VERSANDTEXT - Zwei Versionen */
.ewanto-header-trustami .shipping-text-long {
    font-weight: 600;
    color: #333 !important;
}

.ewanto-header-trustami .shipping-text-short {
    font-weight: 600;
    color: #333 !important;
    display: none;
}

/* AB 1050px: "97,60% Positiv" verstecken */
@media (max-width: 1050px) {
    .hide-below-1051 {
        display: none !important;
    }
}

/* AB 850px: Zeige "kostenloser Versand", verstecke "0€ Versand" */
@media (min-width: 851px) {
    .show-below-851 {
        display: none !important;
    }
}

/* UNTER 851px: Verstecke "kostenloser Versand", zeige "0€ Versand" */
@media (max-width: 850px) {
    .hide-below-851 {
        display: none !important;
    }
    
    .show-below-851 {
        display: inline !important;
    }
}

/* ===== MOBILE: Eine Zeile - Trustami | 414.689 Bewertungen | Ab 29€ 0€ Versand ===== */
@media (max-width: 800px) { /* von 768px auf 800px - verhindert Umbruch bei 788px */
    .ewanto-header-trustami {
        font-size: 12px;
        padding: 10px 0;
    }
    
    /* Desktop Layout verstecken */
    .desktop-layout {
        display: none;
    }
    
    /* Mobile Layout anzeigen */
    .mobile-layout {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        flex-wrap: wrap;
        width: 100%;
    }
    
    /* Mobile zeigt "0€ Versand" */
    .ewanto-header-trustami .shipping-text-short {
        display: inline !important;
        font-size: 12px;
    }
    
    /* Kleinere Schriften */
    .ewanto-header-trustami .trust-blue,
    .ewanto-header-trustami .trust-green {
        font-size: 14px;
    }
    
    .ewanto-header-trustami .reviews-count {
        font-size: 14px;
    }
    
    .ewanto-header-trustami .shipping-price {
        font-size: 14px;
    }
    
    .ewanto-header-trustami .text-normal {
        font-size: 12px;
    }
    
    .ewanto-header-trustami .separator {
        margin: 0 5px;
        font-size: 12px;
    }
}

@media (max-width: 576px) {
    .ewanto-header-trustami {
        font-size: 11px;
    }
    
    .ewanto-header-trustami .trust-blue,
    .ewanto-header-trustami .trust-green {
        font-size: 13px;
    }
    
    .ewanto-header-trustami .reviews-count,
    .ewanto-header-trustami .shipping-price {
        font-size: 13px;
    }
    
    .ewanto-header-trustami .text-normal {
        font-size: 11px;
    }
    
    /* Kleinere Schrift für "0€ Versand" */
    .ewanto-header-trustami .shipping-text-short {
        font-size: 11px;
    }
}

/* UNTER 452px: ALLES KOMPAKTER - Bleibt in einer Zeile! */
@media (max-width: 452px) {
    .ewanto-header-trustami {
        font-size: 10px;
        padding: 8px 0;
    }
    
    /* Weniger Abstand zwischen Elementen */
    .mobile-layout {
        gap: 5px !important;
    }
    
    /* Separator noch kleiner */
    .ewanto-header-trustami .separator {
        margin: 0 3px !important;
        font-size: 10px;
    }
    
    /* Alle Schriften noch kleiner */
    .ewanto-header-trustami .trust-blue,
    .ewanto-header-trustami .trust-green {
        font-size: 11px;
    }
    
    .ewanto-header-trustami .reviews-count,
    .ewanto-header-trustami .shipping-price {
        font-size: 11px;
    }
    
    .ewanto-header-trustami .text-normal {
        font-size: 10px;
    }
    
    .ewanto-header-trustami .shipping-text-short {
        font-size: 10px;
    }
    
    .ewanto-header-trustami .shipping-icon {
        font-size: 14px;
    }
}
