.fsps-progress-container {
    margin: 0;
    padding: 5px 10px;
    background: #f8f9fa;
    border-radius: 0;
    font-size: 12px;
}

/* Header-spezifische Anpassung - verhindert Verschiebung des Menüs */
#header .fsps-progress-container {
    margin: 0;
    padding: 2px 15px;
    background: transparent;
    width: 100%;
    max-width: 300px;
    display: inline-block;
    vertical-align: middle;
}

/* Für Classic Theme Header */
#header .header-nav .fsps-progress-container {
    float: right;
    width: auto;
    min-width: 250px;
    margin-top: 5px;
}

/* Für Hummingbird Theme */
#header .navbar .fsps-progress-container {
    flex: 0 0 auto;
    margin-left: auto;
    order: 10;
}

/* Fortschrittsbalken-Nachricht */
.fsps-progress-message {
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 3px;
    color: #333;
    white-space: nowrap;
}

/* Balken-Wrapper */
.fsps-progress-bar-wrapper {
    background-color: #e9ecef;
    border-radius: 10px;
    overflow: hidden;
    height: 6px;
    width: 100%;
}

/* Balken-Füllung */
.fsps-progress-bar-fill {
    height: 100%;
    width: 0%;
    transition: width 0.3s ease;
    border-radius: 10px;
}

/* Prozent-Text */
.fsps-progress-text {
    font-size: 10px;
    text-align: right;
    margin-top: 2px;
    color: #666;
    display: none; /* Standardmäßig ausblenden, zu viel Text im Header */
}

/* Erfolgsmeldung */
.fsps-success-message {
    color: #28a745;
    font-weight: bold;
}

/* Warenkorb-Footer Anzeige (dort ist mehr Platz) */
#shopping-cart-footer .fsps-progress-container,
.cart-footer .fsps-progress-container {
    margin: 15px 0;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
}

#shopping-cart-footer .fsps-progress-text,
.cart-footer .fsps-progress-text {
    display: block; /* Im Footer anzeigen */
}

#shopping-cart-footer .fsps-progress-message,
.cart-footer .fsps-progress-message {
    font-size: 14px;
}

#shopping-cart-footer .fsps-progress-bar-wrapper,
.cart-footer .fsps-progress-bar-wrapper {
    height: 10px;
}

/* Theme-Modus Anpassungen */
.theme-mode-classic #header .fsps-progress-container {
    line-height: normal;
}

.theme-mode-hummingbird #header .fsps-progress-container {
    margin-top: 0;
    margin-bottom: 0;
}

/* Mobile Ansicht */
@media (max-width: 768px) {
    #header .fsps-progress-container {
        max-width: 200px;
        padding: 2px 5px;
    }
    
    .fsps-progress-message {
        font-size: 10px;
        white-space: normal;
        line-height: 1.2;
    }
    
    .fsps-progress-bar-wrapper {
        height: 4px;
    }
}