/* Fachkartons Progressbar - Brauerei Style */
#fachkartons-progress {
    background: #1a1a1a;
    padding: 24px 28px;
    border-radius: 14px;
    margin: 28px auto;
    max-width: 680px;
    color: #f5f0e6;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

#fachkartons-progress .progress-title {
    text-align: center;
    margin-bottom: 14px;
    font-weight: 700;
    font-size: 16.5px;
}

#fachkartons-progress .progress-bar-outer {
    height: 19px;
    background: #2a2a2a;
    border-radius: 9999px;
    overflow: hidden;
    box-shadow: inset 0 3px 6px rgba(0, 0, 0, 0.5);
}

#fachkartons-progress .progress-bar-inner {
    height: 100%;
    background: #BA9F5C;
    transition: width 0.7s ease;
}

#fachkartons-progress .progress-subtext {
    text-align: center;
    margin-top: 12px;
    font-size: 14px;
    line-height: 1.4;
    opacity: 0.9;
}

/* Mobile Optimierung */
@media (max-width: 768px) {
    #fachkartons-progress {
        padding: 20px 22px;
        margin: 20px auto;
        max-width: 92%;
    }
}