/* ======================
   Vaste balk onderaan
   ====================== */
.stijl-dna-bottom-bar {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1200px;
    z-index: 9999;
    background: #fff;
    border-top: 1px solid #e5e5e5;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
	border-radius: 5px;
    padding: 15px;
    box-sizing: border-box; /* Zorgt ervoor dat padding binnen de 1200px blijft */
}

.stijl-dna-bar-content {
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.stijl-dna-bar-left {
    display: flex;
    align-items: center;
    gap: 14px;
}

.stijl-dna-bar-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #e8e8e6;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 600;
    color: #555;
    flex-shrink: 0;
}

.stijl-dna-bar-content.is-complete .stijl-dna-bar-icon {
    background: #1a3c34;
    color: #fff;
}

.stijl-dna-bar-title {
    font-weight: 600;
    font-size: 15px;
    color: #111;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.stijl-dna-bar-badge {
    font-size: 11px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 6px;
    background: #f0f0ee;
    color: #555;
    letter-spacing: 0.3px;
}

.stijl-dna-bar-badge.complete {
    background: #1a3c34;
    color: #fff;
}

.stijl-dna-bar-text {
    font-size: 13px;
    color: #666;
    margin-top: 2px;
}

.stijl-dna-bar-btn {
    background: #e8e8e6;
    color: #999;
    border: none;
    padding: 12px 22px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    cursor: not-allowed;
    white-space: nowrap;
    transition: all 0.2s;
}

.stijl-dna-bar-content.is-complete .stijl-dna-bar-btn {
    background: #1a3c34;
    color: #fff;
    cursor: pointer;
}

.stijl-dna-bar-content.is-complete .stijl-dna-bar-btn:hover {
    background: #14302a;
}

@media (max-width: 700px) {
    .stijl-dna-bar-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    .stijl-dna-bar-btn {
        width: 100%;
        text-align: center;
    }
}